[5089] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[5089] | 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 | |
---|
| 22 | if( !defined("PHPWG_ROOT_PATH") ) |
---|
| 23 | { |
---|
| 24 | die ("Hacking attempt!"); |
---|
| 25 | } |
---|
| 26 | |
---|
| 27 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
| 28 | include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php'); |
---|
| 29 | include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php'); |
---|
[10641] | 30 | include_once(PHPWG_ROOT_PATH.'admin/include/image.class.php'); |
---|
[5089] | 31 | |
---|
| 32 | define( |
---|
| 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 | |
---|
| 41 | check_status(ACCESS_ADMINISTRATOR); |
---|
| 42 | |
---|
| 43 | // +-----------------------------------------------------------------------+ |
---|
| 44 | // | Load configuration | |
---|
| 45 | // +-----------------------------------------------------------------------+ |
---|
| 46 | |
---|
[8249] | 47 | $upload_form_config = get_upload_form_config(); |
---|
[5089] | 48 | |
---|
| 49 | // +-----------------------------------------------------------------------+ |
---|
| 50 | // | Tabs | |
---|
| 51 | // +-----------------------------------------------------------------------+ |
---|
| 52 | |
---|
| 53 | $tabs = array( |
---|
| 54 | array( |
---|
| 55 | 'code' => 'direct', |
---|
[5285] | 56 | 'label' => l10n('Upload Photos'), |
---|
[5089] | 57 | ), |
---|
| 58 | array( |
---|
| 59 | 'code' => 'settings', |
---|
[5285] | 60 | 'label' => l10n('Settings'), |
---|
[5182] | 61 | ), |
---|
| 62 | array( |
---|
| 63 | 'code' => 'ploader', |
---|
[5285] | 64 | 'label' => l10n('Piwigo Uploader'), |
---|
[5182] | 65 | ), |
---|
[5089] | 66 | ); |
---|
| 67 | |
---|
[6365] | 68 | if ($conf['enable_synchronization']) |
---|
| 69 | { |
---|
| 70 | array_push( |
---|
| 71 | $tabs, |
---|
| 72 | array( |
---|
| 73 | 'code' => 'ftp', |
---|
| 74 | 'label' => l10n('FTP + Synchronization'), |
---|
| 75 | ) |
---|
| 76 | ); |
---|
| 77 | } |
---|
| 78 | |
---|
[5089] | 79 | $tab_codes = array_map( |
---|
| 80 | create_function('$a', 'return $a["code"];'), |
---|
| 81 | $tabs |
---|
| 82 | ); |
---|
| 83 | |
---|
| 84 | if (isset($_GET['section']) and in_array($_GET['section'], $tab_codes)) |
---|
| 85 | { |
---|
| 86 | $page['tab'] = $_GET['section']; |
---|
| 87 | } |
---|
| 88 | else |
---|
| 89 | { |
---|
| 90 | $page['tab'] = $tabs[0]['code']; |
---|
| 91 | } |
---|
| 92 | |
---|
| 93 | $tabsheet = new tabsheet(); |
---|
| 94 | foreach ($tabs as $tab) |
---|
| 95 | { |
---|
| 96 | $tabsheet->add( |
---|
| 97 | $tab['code'], |
---|
[5285] | 98 | $tab['label'], |
---|
[5089] | 99 | PHOTOS_ADD_BASE_URL.'&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( |
---|
[5960] | 111 | 'photos_add' => 'photos_add_'.$page['tab'].'.tpl' |
---|
[5089] | 112 | ) |
---|
| 113 | ); |
---|
| 114 | |
---|
| 115 | // +-----------------------------------------------------------------------+ |
---|
| 116 | // | Load the tab | |
---|
| 117 | // +-----------------------------------------------------------------------+ |
---|
| 118 | |
---|
| 119 | include(PHPWG_ROOT_PATH.'admin/photos_add_'.$page['tab'].'.php'); |
---|
| 120 | ?> |
---|