source: extensions/File_Uploader/admin.php @ 25973

Last change on this file since 25973 was 19735, checked in by julien1311, 11 years ago

admin link modification

  • Property svn:eol-style set to LF
File size: 1003 bytes
Line 
1<?php
2//Chech whether we are indeed included by Piwigo.
3if (!defined('FILE_UPLOADER_PATH')) die('Hacking attempt!');
4
5//Load globals
6global $template, $conf, $page;
7
8//Library for tabs
9include_once(PHPWG_ROOT_PATH .'admin/include/tabsheet.class.php');
10
11//Load translation files
12load_language('plugin.lang', FILE_UPLOADER_PATH);
13
14//Check access and exit when user status is not ok
15check_status(ACCESS_ADMINISTRATOR);
16
17//Tab management
18if (empty($conf['File_Uploader_tabs'])) {
19  $conf['File_Uploader_tabs'] = array('upload', 'configuration', 'help');
20}
21
22$page['tab'] = isset($_GET['tab']) ? $_GET['tab'] : $conf['File_Uploader_tabs'][0];
23
24if (!in_array($page['tab'], $conf['File_Uploader_tabs'])) die('Hacking attempt!');     
25
26$tabsheet = new tabsheet();
27foreach ($conf['File_Uploader_tabs'] as $tab) {
28  $tabsheet->add($tab, l10n(ucfirst($tab)), FILE_UPLOADER_ADMIN.'-'.$tab);
29}
30$tabsheet->select($page['tab']);
31$tabsheet->assign();
32
33include_once(FILE_UPLOADER_PATH.'/admin/admin_'.$page['tab'].'.php');
34?>
Note: See TracBrowser for help on using the repository browser.