source: trunk/admin/photos_add.php @ 13018

Last change on this file since 13018 was 12879, checked in by plg, 12 years ago

feature 2548, multiple size:

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