source: trunk/admin/cat_move.php @ 2297

Last change on this file since 2297 was 2297, checked in by plg, 16 years ago

Modification: new header on PHP files, PhpWebGallery renamed Piwigo.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
RevLine 
[881]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23// +-----------------------------------------------------------------------+
[881]24// | PhpWebGallery - a PHP based picture gallery                           |
25// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
[2223]26// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
[881]27// +-----------------------------------------------------------------------+
[1961]28// | file          : $Id: cat_move.php 2297 2008-04-04 22:57:23Z plg $
[881]29// | last update   : $Date: 2008-04-04 22:57:23 +0000 (Fri, 04 Apr 2008) $
30// | last modifier : $Author: plg $
31// | revision      : $Revision: 2297 $
32// +-----------------------------------------------------------------------+
33// | This program is free software; you can redistribute it and/or modify  |
34// | it under the terms of the GNU General Public License as published by  |
35// | the Free Software Foundation                                          |
36// |                                                                       |
37// | This program is distributed in the hope that it will be useful, but   |
38// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
39// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
40// | General Public License for more details.                              |
41// |                                                                       |
42// | You should have received a copy of the GNU General Public License     |
43// | along with this program; if not, write to the Free Software           |
44// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
45// | USA.                                                                  |
46// +-----------------------------------------------------------------------+
47
48if (!defined('PHPWG_ROOT_PATH'))
49{
50  die('Hacking attempt!');
51}
52
[1072]53include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
54
[881]55// +-----------------------------------------------------------------------+
[1072]56// | Check Access and exit when user status is not ok                      |
57// +-----------------------------------------------------------------------+
58check_status(ACCESS_ADMINISTRATOR);
59
60// +-----------------------------------------------------------------------+
[881]61// |                               functions                               |
62// +-----------------------------------------------------------------------+
63
64
65// +-----------------------------------------------------------------------+
66// |                          categories movement                          |
67// +-----------------------------------------------------------------------+
68
69if (isset($_POST['submit']))
70{
71  if (count($_POST['selection']) > 0)
72  {
73    // TODO: tests
74    move_categories($_POST['selection'], $_POST['parent']);
75  }
76  else
77  {
78    array_push(
79      $page['errors'],
80      l10n('Select at least one category')
81      );
82  }
83}
84
85// +-----------------------------------------------------------------------+
86// |                       template initialization                         |
87// +-----------------------------------------------------------------------+
[2223]88$template->set_filename('cat_move', 'admin/cat_move.tpl');
[881]89
[2223]90$template->assign(
[881]91  array(
[1246]92    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=cat_move',
[1004]93    'F_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=cat_move',
[881]94    )
95  );
96 
97// +-----------------------------------------------------------------------+
98// |                          Categories display                           |
99// +-----------------------------------------------------------------------+
100
101$query = '
102SELECT id,name,uppercats,global_rank
103  FROM '.CATEGORIES_TABLE.'
104  WHERE dir IS NULL
105;';
106display_select_cat_wrapper(
107  $query,
108  array(),
[2223]109  'category_to_move_options'
[881]110  );
111
112$query = '
113SELECT id,name,uppercats,global_rank
114  FROM '.CATEGORIES_TABLE.'
115;';
116
117display_select_cat_wrapper(
118  $query,
119  array(),
[2223]120  'category_parent_options'
[881]121  );
122
123// +-----------------------------------------------------------------------+
124// |                          sending html code                            |
125// +-----------------------------------------------------------------------+
126
127$template->assign_var_from_handle('ADMIN_CONTENT', 'cat_move');
128?>
Note: See TracBrowser for help on using the repository browser.