source: extensions/Google2Piwigo/admin.php @ 28832

Last change on this file since 28832 was 28832, checked in by mistic100, 10 years ago

fix oauth flow

File size: 922 bytes
Line 
1<?php
2defined('PICASA_WA_PATH') or die('Hacking attempt!');
3
4global $template, $page, $conf;
5
6load_language('plugin.lang', PICASA_WA_PATH);
7
8if (!file_exists(PICASA_WA_CACHE))
9{
10  mkdir(PICASA_WA_CACHE, 0755);
11}
12
13// tabsheet
14include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
15$page['tab'] = (isset($_GET['tab'])) ? $_GET['tab'] : $page['tab'] = 'import';
16
17$tabsheet = new tabsheet();
18$tabsheet->add('import', l10n('Import'), PICASA_WA_ADMIN . '-import');
19$tabsheet->add('config', l10n('Configuration'), PICASA_WA_ADMIN . '-config');
20$tabsheet->select($page['tab']);
21$tabsheet->assign();
22
23// include page
24include(PICASA_WA_PATH . 'admin/' . $page['tab'] . '.php');
25
26// template
27$template->assign(array(
28  'PICASA_WA_PATH'=> PICASA_WA_PATH,
29  'PICASA_WA_ABS_PATH'=> dirname(__FILE__).'/',
30  'PICASA_WA_ADMIN' => PICASA_WA_ADMIN,
31  ));
32
33$template->assign_var_from_handle('ADMIN_CONTENT', 'picasa_web_albums');
Note: See TracBrowser for help on using the repository browser.