source: trunk/admin/photos_add.php @ 11853

Last change on this file since 11853 was 10653, checked in by patdenice, 13 years ago

Insert upload form parameters in database during installation.
Remove prepare_upload_configuration function.

File size: 4.1 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// +-----------------------------------------------------------------------+
52
53$tabs = array(
54  array(
55    'code' => 'direct',
56    'label' => l10n('Upload Photos'),
57    ),
58  array(
59    'code' => 'settings',
60    'label' => l10n('Settings'),
61    ),
62  array(
63    'code' => 'ploader',
64    'label' => l10n('Piwigo Uploader'),
65    ),
66  );
67
68if ($conf['enable_synchronization'])
69{
70  array_push(
71    $tabs,
72    array(
73      'code' => 'ftp',
74      'label' => l10n('FTP + Synchronization'),
75      )
76    );
77}
78
79$tab_codes = array_map(
80  create_function('$a', 'return $a["code"];'),
81  $tabs
82  );
83
84if (isset($_GET['section']) and in_array($_GET['section'], $tab_codes))
85{
86  $page['tab'] = $_GET['section'];
87}
88else
89{
90  $page['tab'] = $tabs[0]['code'];
91}
92
93$tabsheet = new tabsheet();
94foreach ($tabs as $tab)
95{
96  $tabsheet->add(
97    $tab['code'],
98    $tab['label'],
99    PHOTOS_ADD_BASE_URL.'&amp;section='.$tab['code']
100    );
101}
102$tabsheet->select($page['tab']);
103$tabsheet->assign();
104
105// +-----------------------------------------------------------------------+
106// |                             template init                             |
107// +-----------------------------------------------------------------------+
108
109$template->set_filenames(
110  array(
111    'photos_add' => 'photos_add_'.$page['tab'].'.tpl'
112    )
113  );
114
115// +-----------------------------------------------------------------------+
116// |                             Load the tab                              |
117// +-----------------------------------------------------------------------+
118
119include(PHPWG_ROOT_PATH.'admin/photos_add_'.$page['tab'].'.php');
120?>
Note: See TracBrowser for help on using the repository browser.