-
Notifications
You must be signed in to change notification settings - Fork 12
/
vconfig.php
22 lines (22 loc) · 1.26 KB
/
vconfig.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/*===================================================================== */
/* PHP-Nuke Titanium | Nuke-Evolution Xtreme : A PHP-Nuke Fork */
/* ==================================================================== */
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME']))
exit('Access Denied');
# Default API version 3.4
use Vimeo\Vimeo;
global $client, $client_id, $client_secret, $access_token;
$client_id = 'yourclientidgoeshere';
$client_secret = 'yourclientsecretgoeshere';
$access_token = 'youraccesstokengoeshere';
$client = new Vimeo("$client_id","$client_secret","$access_token");