1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2010 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 | |
---|
24 | if (!defined('PHPWG_ROOT_PATH')) |
---|
25 | { |
---|
26 | die ("Hacking attempt!"); |
---|
27 | } |
---|
28 | |
---|
29 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
30 | include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php'); |
---|
31 | |
---|
32 | // +-----------------------------------------------------------------------+ |
---|
33 | // | Check Access and exit when user status is not ok | |
---|
34 | // +-----------------------------------------------------------------------+ |
---|
35 | check_status(ACCESS_ADMINISTRATOR); |
---|
36 | |
---|
37 | // +-----------------------------------------------------------------------+ |
---|
38 | // | modification registration | |
---|
39 | // +-----------------------------------------------------------------------+ |
---|
40 | |
---|
41 | // print '<pre>'; |
---|
42 | // print_r($_POST); |
---|
43 | // print '</pre>'; |
---|
44 | if (isset($_POST['falsify']) |
---|
45 | and isset($_POST['cat_true']) |
---|
46 | and count($_POST['cat_true']) > 0) |
---|
47 | { |
---|
48 | switch ($_GET['section']) |
---|
49 | { |
---|
50 | case 'upload' : |
---|
51 | { |
---|
52 | $query = ' |
---|
53 | UPDATE '.CATEGORIES_TABLE.' |
---|
54 | SET uploadable = \'false\' |
---|
55 | WHERE id IN ('.implode(',', $_POST['cat_true']).') |
---|
56 | ;'; |
---|
57 | pwg_query($query); |
---|
58 | break; |
---|
59 | } |
---|
60 | case 'comments' : |
---|
61 | { |
---|
62 | $query = ' |
---|
63 | UPDATE '.CATEGORIES_TABLE.' |
---|
64 | SET commentable = \'false\' |
---|
65 | WHERE id IN ('.implode(',', $_POST['cat_true']).') |
---|
66 | ;'; |
---|
67 | pwg_query($query); |
---|
68 | break; |
---|
69 | } |
---|
70 | case 'visible' : |
---|
71 | { |
---|
72 | set_cat_visible($_POST['cat_true'], 'false'); |
---|
73 | break; |
---|
74 | } |
---|
75 | case 'status' : |
---|
76 | { |
---|
77 | set_cat_status($_POST['cat_true'], 'private'); |
---|
78 | break; |
---|
79 | } |
---|
80 | case 'representative' : |
---|
81 | { |
---|
82 | $query = ' |
---|
83 | UPDATE '.CATEGORIES_TABLE.' |
---|
84 | SET representative_picture_id = NULL |
---|
85 | WHERE id IN ('.implode(',', $_POST['cat_true']).') |
---|
86 | ;'; |
---|
87 | pwg_query($query); |
---|
88 | break; |
---|
89 | } |
---|
90 | } |
---|
91 | } |
---|
92 | else if (isset($_POST['trueify']) |
---|
93 | and isset($_POST['cat_false']) |
---|
94 | and count($_POST['cat_false']) > 0) |
---|
95 | { |
---|
96 | switch ($_GET['section']) |
---|
97 | { |
---|
98 | case 'upload' : |
---|
99 | { |
---|
100 | $query = ' |
---|
101 | UPDATE '.CATEGORIES_TABLE.' |
---|
102 | SET uploadable = \'true\' |
---|
103 | WHERE id IN ('.implode(',', $_POST['cat_false']).') |
---|
104 | ;'; |
---|
105 | pwg_query($query); |
---|
106 | break; |
---|
107 | } |
---|
108 | case 'comments' : |
---|
109 | { |
---|
110 | $query = ' |
---|
111 | UPDATE '.CATEGORIES_TABLE.' |
---|
112 | SET commentable = \'true\' |
---|
113 | WHERE id IN ('.implode(',', $_POST['cat_false']).') |
---|
114 | ;'; |
---|
115 | pwg_query($query); |
---|
116 | break; |
---|
117 | } |
---|
118 | case 'visible' : |
---|
119 | { |
---|
120 | set_cat_visible($_POST['cat_false'], 'true'); |
---|
121 | break; |
---|
122 | } |
---|
123 | case 'status' : |
---|
124 | { |
---|
125 | set_cat_status($_POST['cat_false'], 'public'); |
---|
126 | break; |
---|
127 | } |
---|
128 | case 'representative' : |
---|
129 | { |
---|
130 | // theoretically, all categories in $_POST['cat_false'] contain at |
---|
131 | // least one element, so Piwigo can find a representant. |
---|
132 | set_random_representant($_POST['cat_false']); |
---|
133 | break; |
---|
134 | } |
---|
135 | } |
---|
136 | } |
---|
137 | |
---|
138 | // +-----------------------------------------------------------------------+ |
---|
139 | // | template init | |
---|
140 | // +-----------------------------------------------------------------------+ |
---|
141 | |
---|
142 | $template->set_filenames( |
---|
143 | array( |
---|
144 | 'cat_options' => 'cat_options.tpl', |
---|
145 | 'double_select' => 'double_select.tpl' |
---|
146 | ) |
---|
147 | ); |
---|
148 | |
---|
149 | $page['section'] = isset($_GET['section']) ? $_GET['section'] : 'status'; |
---|
150 | $base_url = PHPWG_ROOT_PATH.'admin.php?page=cat_options&section='; |
---|
151 | |
---|
152 | $template->assign( |
---|
153 | array( |
---|
154 | 'U_HELP' => get_root_url().'admin/popuphelp.php?page=cat_options', |
---|
155 | 'F_ACTION'=>$base_url.$page['section'] |
---|
156 | ) |
---|
157 | ); |
---|
158 | |
---|
159 | // TabSheet |
---|
160 | $tabsheet = new tabsheet(); |
---|
161 | // TabSheet initialization |
---|
162 | $opt_link = $link_start.'cat_options&section='; |
---|
163 | $tabsheet->add('status', l10n('Public / Private'), $opt_link.'status'); |
---|
164 | $tabsheet->add('visible', l10n('Lock'), $opt_link.'visible'); |
---|
165 | if ($conf['enable_synchronization']) |
---|
166 | { |
---|
167 | $tabsheet->add('upload', l10n('Upload'), $opt_link.'upload'); |
---|
168 | } |
---|
169 | $tabsheet->add('comments', l10n('Comments'), $opt_link.'comments'); |
---|
170 | if ($conf['allow_random_representative']) |
---|
171 | { |
---|
172 | $tabsheet->add('representative', l10n('Representative'), $opt_link.'representative'); |
---|
173 | } |
---|
174 | // TabSheet selection |
---|
175 | $tabsheet->select($page['section']); |
---|
176 | // Assign tabsheet to template |
---|
177 | $tabsheet->assign(); |
---|
178 | |
---|
179 | // +-----------------------------------------------------------------------+ |
---|
180 | // | form display | |
---|
181 | // +-----------------------------------------------------------------------+ |
---|
182 | |
---|
183 | // for each section, categories in the multiselect field can be : |
---|
184 | // |
---|
185 | // - true : uploadable for upload section |
---|
186 | // - false : un-uploadable for upload section |
---|
187 | // - NA : (not applicable) for virtual categories |
---|
188 | // |
---|
189 | // for true and false status, we associates an array of category ids, |
---|
190 | // function display_select_categories will use the given CSS class for each |
---|
191 | // option |
---|
192 | $cats_true = array(); |
---|
193 | $cats_false = array(); |
---|
194 | switch ($page['section']) |
---|
195 | { |
---|
196 | case 'upload' : |
---|
197 | { |
---|
198 | $query_true = ' |
---|
199 | SELECT id,name,uppercats,global_rank |
---|
200 | FROM '.CATEGORIES_TABLE.' |
---|
201 | WHERE uploadable = \'true\' |
---|
202 | AND dir IS NOT NULL |
---|
203 | AND site_id = 1 |
---|
204 | ;'; |
---|
205 | $query_false = ' |
---|
206 | SELECT id,name,uppercats,global_rank |
---|
207 | FROM '.CATEGORIES_TABLE.' |
---|
208 | WHERE uploadable = \'false\' |
---|
209 | AND dir IS NOT NULL |
---|
210 | AND site_id = 1 |
---|
211 | ;'; |
---|
212 | $template->assign( |
---|
213 | array( |
---|
214 | 'L_SECTION' => l10n('Select uploadable albums'), |
---|
215 | 'L_CAT_OPTIONS_TRUE' => l10n('Authorized'), |
---|
216 | 'L_CAT_OPTIONS_FALSE' => l10n('Forbidden'), |
---|
217 | ) |
---|
218 | ); |
---|
219 | break; |
---|
220 | } |
---|
221 | case 'comments' : |
---|
222 | { |
---|
223 | $query_true = ' |
---|
224 | SELECT id,name,uppercats,global_rank |
---|
225 | FROM '.CATEGORIES_TABLE.' |
---|
226 | WHERE commentable = \'true\' |
---|
227 | ;'; |
---|
228 | $query_false = ' |
---|
229 | SELECT id,name,uppercats,global_rank |
---|
230 | FROM '.CATEGORIES_TABLE.' |
---|
231 | WHERE commentable = \'false\' |
---|
232 | ;'; |
---|
233 | $template->assign( |
---|
234 | array( |
---|
235 | 'L_SECTION' => l10n('Authorize users to add comments on selected albums'), |
---|
236 | 'L_CAT_OPTIONS_TRUE' => l10n('Authorized'), |
---|
237 | 'L_CAT_OPTIONS_FALSE' => l10n('Forbidden'), |
---|
238 | ) |
---|
239 | ); |
---|
240 | break; |
---|
241 | } |
---|
242 | case 'visible' : |
---|
243 | { |
---|
244 | $query_true = ' |
---|
245 | SELECT id,name,uppercats,global_rank |
---|
246 | FROM '.CATEGORIES_TABLE.' |
---|
247 | WHERE visible = \'true\' |
---|
248 | ;'; |
---|
249 | $query_false = ' |
---|
250 | SELECT id,name,uppercats,global_rank |
---|
251 | FROM '.CATEGORIES_TABLE.' |
---|
252 | WHERE visible = \'false\' |
---|
253 | ;'; |
---|
254 | $template->assign( |
---|
255 | array( |
---|
256 | 'L_SECTION' => l10n('Lock albums'), |
---|
257 | 'L_CAT_OPTIONS_TRUE' => l10n('Unlocked'), |
---|
258 | 'L_CAT_OPTIONS_FALSE' => l10n('Locked'), |
---|
259 | ) |
---|
260 | ); |
---|
261 | break; |
---|
262 | } |
---|
263 | case 'status' : |
---|
264 | { |
---|
265 | $query_true = ' |
---|
266 | SELECT id,name,uppercats,global_rank |
---|
267 | FROM '.CATEGORIES_TABLE.' |
---|
268 | WHERE status = \'public\' |
---|
269 | ;'; |
---|
270 | $query_false = ' |
---|
271 | SELECT id,name,uppercats,global_rank |
---|
272 | FROM '.CATEGORIES_TABLE.' |
---|
273 | WHERE status = \'private\' |
---|
274 | ;'; |
---|
275 | $template->assign( |
---|
276 | array( |
---|
277 | 'L_SECTION' => l10n('Manage authorizations for selected albums'), |
---|
278 | 'L_CAT_OPTIONS_TRUE' => l10n('Public'), |
---|
279 | 'L_CAT_OPTIONS_FALSE' => l10n('Private'), |
---|
280 | ) |
---|
281 | ); |
---|
282 | break; |
---|
283 | } |
---|
284 | case 'representative' : |
---|
285 | { |
---|
286 | $query_true = ' |
---|
287 | SELECT id,name,uppercats,global_rank |
---|
288 | FROM '.CATEGORIES_TABLE.' |
---|
289 | WHERE representative_picture_id IS NOT NULL |
---|
290 | ;'; |
---|
291 | $query_false = ' |
---|
292 | SELECT DISTINCT id,name,uppercats,global_rank |
---|
293 | FROM '.CATEGORIES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id=category_id |
---|
294 | WHERE representative_picture_id IS NULL |
---|
295 | ;'; |
---|
296 | $template->assign( |
---|
297 | array( |
---|
298 | 'L_SECTION' => l10n('Representative'), |
---|
299 | 'L_CAT_OPTIONS_TRUE' => l10n('singly represented'), |
---|
300 | 'L_CAT_OPTIONS_FALSE' => l10n('randomly represented') |
---|
301 | ) |
---|
302 | ); |
---|
303 | break; |
---|
304 | } |
---|
305 | } |
---|
306 | display_select_cat_wrapper($query_true,array(),'category_option_true'); |
---|
307 | display_select_cat_wrapper($query_false,array(),'category_option_false'); |
---|
308 | |
---|
309 | // +-----------------------------------------------------------------------+ |
---|
310 | // | sending html code | |
---|
311 | // +-----------------------------------------------------------------------+ |
---|
312 | |
---|
313 | $template->assign_var_from_handle('DOUBLE_SELECT', 'double_select'); |
---|
314 | $template->assign_var_from_handle('ADMIN_CONTENT', 'cat_options'); |
---|
315 | ?> |
---|