source: branches/2.4/admin/photos_add.php @ 18460

Last change on this file since 18460 was 16929, checked in by mistic100, 12 years ago

Merged revision(s) 16928 from trunk:
feature 2703: make it easy for plugins to add tabs in admin screens
centralize all core tabs in one file

File size: 3.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2010      Pierrick LE GALL             http://piwigo.org |
6// +-----------------------------------------------------------------------+
7// | This program is free software; you can redistribute it and/or modify  |
8// | it under the terms of the GNU General Public License as published by  |
9// | the Free Software Foundation                                          |
10// |                                                                       |
11// | This program is distributed in the hope that it will be useful, but   |
12// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
13// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
14// | General Public License for more details.                              |
15// |                                                                       |
16// | You should have received a copy of the GNU General Public License     |
17// | along with this program; if not, write to the Free Software           |
18// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
19// | USA.                                                                  |
20// +-----------------------------------------------------------------------+
21
22if( !defined("PHPWG_ROOT_PATH") )
23{
24  die ("Hacking attempt!");
25}
26
27include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
28include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
29include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
30include_once(PHPWG_ROOT_PATH.'admin/include/image.class.php');
31
32define(
33  'PHOTOS_ADD_BASE_URL',
34  get_root_url().'admin.php?page=photos_add'
35  );
36
37// +-----------------------------------------------------------------------+
38// | Check Access and exit when user status is not ok                      |
39// +-----------------------------------------------------------------------+
40
41check_status(ACCESS_ADMINISTRATOR);
42
43// +-----------------------------------------------------------------------+
44// |                          Load configuration                           |
45// +-----------------------------------------------------------------------+
46
47$upload_form_config = get_upload_form_config();
48
49// +-----------------------------------------------------------------------+
50// |                                 Tabs                                  |
51// +-----------------------------------------------------------------------+
52if (isset($_GET['section']))
53{
54  $page['tab'] = $_GET['section'];
55}
56else
57{
58  $page['tab'] = 'direct';
59}
60
61$tabsheet = new tabsheet();
62$tabsheet->set_id('photos_add');
63$tabsheet->select($page['tab']);
64$tabsheet->assign();
65
66// +-----------------------------------------------------------------------+
67// |                             template init                             |
68// +-----------------------------------------------------------------------+
69
70$template->set_filenames(
71  array(
72    'photos_add' => 'photos_add_'.$page['tab'].'.tpl'
73    )
74  );
75
76// +-----------------------------------------------------------------------+
77// |                             Load the tab                              |
78// +-----------------------------------------------------------------------+
79
80include(PHPWG_ROOT_PATH.'admin/photos_add_'.$page['tab'].'.php');
81?>
Note: See TracBrowser for help on using the repository browser.