source: extensions/instagram2piwigo/admin.php @ 27153

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

update for 2.6

File size: 893 bytes
Line 
1<?php
2defined('INSTAG_PATH') or die('Hacking attempt!');
3
4global $template, $page, $conf;
5
6load_language('plugin.lang', INSTAG_PATH);
7
8if (!file_exists(INSTAG_FS_CACHE))
9{
10  mkdir(INSTAG_FS_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'), INSTAG_ADMIN . '-import');
19$tabsheet->add('config', l10n('Configuration'), INSTAG_ADMIN . '-config');
20$tabsheet->select($page['tab']);
21$tabsheet->assign();
22
23// include page
24include(INSTAG_PATH . 'admin/' . $page['tab'] . '.php');
25
26// template
27$template->assign(array(
28  'INSTAG_PATH'=> INSTAG_PATH,
29  'INSTAG_ABS_PATH'=> dirname(__FILE__).'/',
30  'INSTAG_ADMIN' => INSTAG_ADMIN,
31  ));
32
33$template->assign_var_from_handle('ADMIN_CONTENT', 'Instagram2Piwigo');
Note: See TracBrowser for help on using the repository browser.