[2] | 1 | <?php |
---|
[362] | 2 | // +-----------------------------------------------------------------------+ |
---|
[2297] | 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
[3046] | 5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
[2297] | 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 | // +-----------------------------------------------------------------------+ |
---|
[2] | 23 | |
---|
[423] | 24 | /** |
---|
| 25 | * Provides functions to handle categories. |
---|
| 26 | * |
---|
[1059] | 27 | * |
---|
[423] | 28 | */ |
---|
| 29 | |
---|
| 30 | /** |
---|
| 31 | * Is the category accessible to the connected user ? |
---|
| 32 | * |
---|
| 33 | * Note : if the user is not authorized to see this category, page creation |
---|
| 34 | * ends (exit command in this function) |
---|
| 35 | * |
---|
| 36 | * @param int category id to verify |
---|
| 37 | * @return void |
---|
| 38 | */ |
---|
[808] | 39 | function check_restrictions($category_id) |
---|
[2] | 40 | { |
---|
[1113] | 41 | global $user; |
---|
[2] | 42 | |
---|
[1677] | 43 | // $filter['visible_categories'] and $filter['visible_images'] |
---|
| 44 | // are not used because it's not necessary (filter <> restriction) |
---|
[808] | 45 | if (in_array($category_id, explode(',', $user['forbidden_categories']))) |
---|
[2] | 46 | { |
---|
[1113] | 47 | access_denied(); |
---|
[2] | 48 | } |
---|
| 49 | } |
---|
[345] | 50 | |
---|
[614] | 51 | function get_categories_menu() |
---|
[2] | 52 | { |
---|
[1677] | 53 | global $page, $user, $filter; |
---|
[1059] | 54 | |
---|
[1624] | 55 | $query = ' |
---|
| 56 | SELECT '; |
---|
| 57 | // From CATEGORIES_TABLE |
---|
| 58 | $query.= ' |
---|
[1866] | 59 | id, name, permalink, nb_images, global_rank,'; |
---|
[1624] | 60 | // From USER_CACHE_CATEGORIES_TABLE |
---|
| 61 | $query.= ' |
---|
[1641] | 62 | date_last, max_date_last, count_images, count_categories'; |
---|
[1059] | 63 | |
---|
[1624] | 64 | // $user['forbidden_categories'] including with USER_CACHE_CATEGORIES_TABLE |
---|
| 65 | $query.= ' |
---|
[1677] | 66 | FROM '.CATEGORIES_TABLE.' INNER JOIN '.USER_CACHE_CATEGORIES_TABLE.' |
---|
[1624] | 67 | ON id = cat_id and user_id = '.$user['id']; |
---|
[1677] | 68 | |
---|
| 69 | // Always expand when filter is activated |
---|
| 70 | if (!$user['expand'] and !$filter['enabled']) |
---|
[345] | 71 | { |
---|
[2070] | 72 | $where = ' |
---|
[1677] | 73 | (id_uppercat is NULL'; |
---|
| 74 | if (isset($page['category'])) |
---|
| 75 | { |
---|
[2070] | 76 | $where .= ' OR id_uppercat IN ('.$page['category']['uppercats'].')'; |
---|
[1677] | 77 | } |
---|
[2070] | 78 | $where .= ')'; |
---|
[1648] | 79 | } |
---|
| 80 | else |
---|
| 81 | { |
---|
[2070] | 82 | $where = ' |
---|
[1677] | 83 | '.get_sql_condition_FandF |
---|
| 84 | ( |
---|
| 85 | array |
---|
| 86 | ( |
---|
| 87 | 'visible_categories' => 'id', |
---|
| 88 | ), |
---|
[2070] | 89 | null, |
---|
| 90 | true |
---|
[1677] | 91 | ); |
---|
[2] | 92 | } |
---|
[1677] | 93 | |
---|
[2070] | 94 | $where = trigger_event('get_categories_menu_sql_where', |
---|
| 95 | $where, $user['expand'], $filter['enabled'] ); |
---|
| 96 | |
---|
[589] | 97 | $query.= ' |
---|
[2070] | 98 | WHERE '.$where.' |
---|
[589] | 99 | ;'; |
---|
[26] | 100 | |
---|
[589] | 101 | $result = pwg_query($query); |
---|
[614] | 102 | $cats = array(); |
---|
[1641] | 103 | while ($row = mysql_fetch_assoc($result)) |
---|
[2] | 104 | { |
---|
[614] | 105 | array_push($cats, $row); |
---|
[2586] | 106 | if ($row['id']==@$page['category']['id']) //save the number of subcats for later optim |
---|
| 107 | $page['category']['count_categories'] = $row['count_categories']; |
---|
[26] | 108 | } |
---|
[614] | 109 | usort($cats, 'global_rank_compare'); |
---|
[2] | 110 | |
---|
[1677] | 111 | // Update filtered data |
---|
[1722] | 112 | if (function_exists('update_cats_with_filtered_data')) |
---|
| 113 | { |
---|
| 114 | update_cats_with_filtered_data($cats); |
---|
| 115 | } |
---|
[1677] | 116 | |
---|
[1861] | 117 | return get_html_menu_category($cats, @$page['category'] ); |
---|
[26] | 118 | } |
---|
[2] | 119 | |
---|
[1624] | 120 | |
---|
[761] | 121 | /** |
---|
[423] | 122 | * Retrieve informations about a category in the database |
---|
| 123 | * |
---|
| 124 | * Returns an array with following keys : |
---|
| 125 | * |
---|
| 126 | * - comment |
---|
| 127 | * - dir : directory, might be empty for virtual categories |
---|
| 128 | * - name : an array with indexes from 0 (lowest cat name) to n (most |
---|
| 129 | * uppercat name findable) |
---|
| 130 | * - nb_images |
---|
| 131 | * - id_uppercat |
---|
| 132 | * - site_id |
---|
[1059] | 133 | * - |
---|
[423] | 134 | * |
---|
| 135 | * @param int category id |
---|
| 136 | * @return array |
---|
| 137 | */ |
---|
[2] | 138 | function get_cat_info( $id ) |
---|
| 139 | { |
---|
[603] | 140 | $query = ' |
---|
[1861] | 141 | SELECT * |
---|
[603] | 142 | FROM '.CATEGORIES_TABLE.' |
---|
| 143 | WHERE id = '.$id.' |
---|
| 144 | ;'; |
---|
[1861] | 145 | $cat = mysql_fetch_assoc(pwg_query($query)); |
---|
| 146 | if (empty($cat)) |
---|
[1288] | 147 | return null; |
---|
[345] | 148 | |
---|
[1861] | 149 | foreach ($cat as $k => $v) |
---|
[603] | 150 | { |
---|
[345] | 151 | // If the field is true or false, the variable is transformed into a |
---|
| 152 | // boolean value. |
---|
[1861] | 153 | if ($cat[$k] == 'true' or $cat[$k] == 'false') |
---|
[345] | 154 | { |
---|
[1861] | 155 | $cat[$k] = get_boolean( $cat[$k] ); |
---|
[345] | 156 | } |
---|
| 157 | } |
---|
| 158 | |
---|
[1866] | 159 | $upper_ids = explode(',', $cat['uppercats']); |
---|
| 160 | if ( count($upper_ids)==1 ) |
---|
| 161 | {// no need to make a query for level 1 |
---|
| 162 | $cat['upper_names'] = array( |
---|
| 163 | array( |
---|
| 164 | 'id' => $cat['id'], |
---|
| 165 | 'name' => $cat['name'], |
---|
| 166 | 'permalink' => $cat['permalink'], |
---|
| 167 | ) |
---|
| 168 | ); |
---|
| 169 | } |
---|
| 170 | else |
---|
[2] | 171 | { |
---|
[1866] | 172 | $names = array(); |
---|
| 173 | $query = ' |
---|
| 174 | SELECT id, name, permalink |
---|
| 175 | FROM '.CATEGORIES_TABLE.' |
---|
| 176 | WHERE id IN ('.$cat['uppercats'].') |
---|
| 177 | ;'; |
---|
| 178 | $names = hash_from_query($query, 'id'); |
---|
[672] | 179 | |
---|
[1866] | 180 | // category names must be in the same order than uppercats list |
---|
| 181 | $cat['upper_names'] = array(); |
---|
| 182 | foreach ($upper_ids as $cat_id) |
---|
| 183 | { |
---|
| 184 | array_push( $cat['upper_names'], $names[$cat_id]); |
---|
| 185 | } |
---|
[672] | 186 | } |
---|
[2] | 187 | return $cat; |
---|
| 188 | } |
---|
[61] | 189 | |
---|
| 190 | // get_complete_dir returns the concatenation of get_site_url and |
---|
| 191 | // get_local_dir |
---|
| 192 | // Example : "pets > rex > 1_year_old" is on the the same site as the |
---|
[2339] | 193 | // Piwigo files and this category has 22 for identifier |
---|
[61] | 194 | // get_complete_dir(22) returns "./galleries/pets/rex/1_year_old/" |
---|
| 195 | function get_complete_dir( $category_id ) |
---|
| 196 | { |
---|
[579] | 197 | return get_site_url($category_id).get_local_dir($category_id); |
---|
[61] | 198 | } |
---|
| 199 | |
---|
| 200 | // get_local_dir returns an array with complete path without the site url |
---|
| 201 | // Example : "pets > rex > 1_year_old" is on the the same site as the |
---|
[2339] | 202 | // Piwigo files and this category has 22 for identifier |
---|
[61] | 203 | // get_local_dir(22) returns "pets/rex/1_year_old/" |
---|
| 204 | function get_local_dir( $category_id ) |
---|
| 205 | { |
---|
| 206 | global $page; |
---|
| 207 | |
---|
[345] | 208 | $uppercats = ''; |
---|
| 209 | $local_dir = ''; |
---|
| 210 | |
---|
| 211 | if ( isset( $page['plain_structure'][$category_id]['uppercats'] ) ) |
---|
[61] | 212 | { |
---|
[345] | 213 | $uppercats = $page['plain_structure'][$category_id]['uppercats']; |
---|
[61] | 214 | } |
---|
[345] | 215 | else |
---|
| 216 | { |
---|
| 217 | $query = 'SELECT uppercats'; |
---|
| 218 | $query.= ' FROM '.CATEGORIES_TABLE.' WHERE id = '.$category_id; |
---|
| 219 | $query.= ';'; |
---|
[587] | 220 | $row = mysql_fetch_array( pwg_query( $query ) ); |
---|
[345] | 221 | $uppercats = $row['uppercats']; |
---|
| 222 | } |
---|
| 223 | |
---|
| 224 | $upper_array = explode( ',', $uppercats ); |
---|
| 225 | |
---|
| 226 | $database_dirs = array(); |
---|
| 227 | $query = 'SELECT id,dir'; |
---|
| 228 | $query.= ' FROM '.CATEGORIES_TABLE.' WHERE id IN ('.$uppercats.')'; |
---|
| 229 | $query.= ';'; |
---|
[587] | 230 | $result = pwg_query( $query ); |
---|
[345] | 231 | while( $row = mysql_fetch_array( $result ) ) |
---|
| 232 | { |
---|
| 233 | $database_dirs[$row['id']] = $row['dir']; |
---|
| 234 | } |
---|
[579] | 235 | foreach ($upper_array as $id) |
---|
| 236 | { |
---|
[345] | 237 | $local_dir.= $database_dirs[$id].'/'; |
---|
| 238 | } |
---|
| 239 | |
---|
| 240 | return $local_dir; |
---|
[61] | 241 | } |
---|
| 242 | |
---|
| 243 | // retrieving the site url : "http://domain.com/gallery/" or |
---|
| 244 | // simply "./galleries/" |
---|
[579] | 245 | function get_site_url($category_id) |
---|
[61] | 246 | { |
---|
| 247 | global $page; |
---|
| 248 | |
---|
[579] | 249 | $query = ' |
---|
| 250 | SELECT galleries_url |
---|
| 251 | FROM '.SITES_TABLE.' AS s,'.CATEGORIES_TABLE.' AS c |
---|
| 252 | WHERE s.id = c.site_id |
---|
| 253 | AND c.id = '.$category_id.' |
---|
| 254 | ;'; |
---|
[587] | 255 | $row = mysql_fetch_array(pwg_query($query)); |
---|
[61] | 256 | return $row['galleries_url']; |
---|
| 257 | } |
---|
| 258 | |
---|
[1020] | 259 | // returns an array of image orders available for users/visitors |
---|
| 260 | function get_category_preferred_image_orders() |
---|
| 261 | { |
---|
[2517] | 262 | global $conf, $page; |
---|
[2521] | 263 | |
---|
| 264 | return trigger_event('get_category_preferred_image_orders', |
---|
| 265 | array( |
---|
[1059] | 266 | array(l10n('default_sort'), '', true), |
---|
[1042] | 267 | array(l10n('Average rate'), 'average_rate DESC', $conf['rate']), |
---|
[1031] | 268 | array(l10n('most_visited_cat'), 'hit DESC', true), |
---|
| 269 | array(l10n('Creation date'), 'date_creation DESC', true), |
---|
[1059] | 270 | array(l10n('Post date'), 'date_available DESC', true), |
---|
[2517] | 271 | array(l10n('File name'), 'file ASC', true), |
---|
| 272 | array( |
---|
| 273 | l10n('Rank'), |
---|
| 274 | 'rank ASC', |
---|
[2572] | 275 | ('categories' == @$page['section'] and !isset($page['flat']) and !isset($page['chronology_field']) ) |
---|
[2769] | 276 | ), |
---|
| 277 | array( l10n('permissions'), 'level DESC', is_admin() ) |
---|
[2521] | 278 | )); |
---|
[1020] | 279 | } |
---|
| 280 | |
---|
[589] | 281 | function display_select_categories($categories, |
---|
| 282 | $selecteds, |
---|
[602] | 283 | $blockname, |
---|
[614] | 284 | $fullname = true) |
---|
[589] | 285 | { |
---|
[614] | 286 | global $template; |
---|
[589] | 287 | |
---|
[2223] | 288 | $tpl_cats = array(); |
---|
| 289 | foreach ($categories as $category) |
---|
| 290 | { |
---|
| 291 | if ($fullname) |
---|
| 292 | { |
---|
| 293 | $option = get_cat_display_name_cache($category['uppercats'], |
---|
| 294 | null, |
---|
| 295 | false); |
---|
| 296 | } |
---|
| 297 | else |
---|
| 298 | { |
---|
| 299 | $option = str_repeat(' ', |
---|
| 300 | (3 * substr_count($category['global_rank'], '.'))); |
---|
[2433] | 301 | $option.= '- '; |
---|
| 302 | $option.= strip_tags( |
---|
| 303 | trigger_event( |
---|
| 304 | 'render_category_name', |
---|
| 305 | $category['name'], |
---|
| 306 | 'display_select_categories' |
---|
| 307 | ) |
---|
| 308 | ); |
---|
[2223] | 309 | } |
---|
| 310 | $tpl_cats[ $category['id'] ] = $option; |
---|
| 311 | } |
---|
| 312 | |
---|
[2290] | 313 | $template->assign( $blockname, $tpl_cats); |
---|
| 314 | $template->assign( $blockname.'_selected', $selecteds); |
---|
[589] | 315 | } |
---|
[603] | 316 | |
---|
[614] | 317 | function display_select_cat_wrapper($query, $selecteds, $blockname, |
---|
| 318 | $fullname = true) |
---|
| 319 | { |
---|
| 320 | $result = pwg_query($query); |
---|
| 321 | $categories = array(); |
---|
[655] | 322 | if (!empty($result)) |
---|
| 323 | { |
---|
[1866] | 324 | while ($row = mysql_fetch_assoc($result)) |
---|
[657] | 325 | { |
---|
| 326 | array_push($categories, $row); |
---|
| 327 | } |
---|
[614] | 328 | } |
---|
| 329 | usort($categories, 'global_rank_compare'); |
---|
| 330 | display_select_categories($categories, $selecteds, $blockname, $fullname); |
---|
| 331 | } |
---|
| 332 | |
---|
[603] | 333 | /** |
---|
| 334 | * returns all subcategory identifiers of given category ids |
---|
| 335 | * |
---|
| 336 | * @param array ids |
---|
| 337 | * @return array |
---|
| 338 | */ |
---|
| 339 | function get_subcat_ids($ids) |
---|
| 340 | { |
---|
| 341 | $query = ' |
---|
| 342 | SELECT DISTINCT(id) |
---|
| 343 | FROM '.CATEGORIES_TABLE.' |
---|
| 344 | WHERE '; |
---|
| 345 | foreach ($ids as $num => $category_id) |
---|
| 346 | { |
---|
[1861] | 347 | is_numeric($category_id) |
---|
| 348 | or trigger_error( |
---|
| 349 | 'get_subcat_ids expecting numeric, not '.gettype($category_id), |
---|
| 350 | E_USER_WARNING |
---|
| 351 | ); |
---|
[603] | 352 | if ($num > 0) |
---|
| 353 | { |
---|
| 354 | $query.= ' |
---|
| 355 | OR '; |
---|
| 356 | } |
---|
| 357 | $query.= 'uppercats REGEXP \'(^|,)'.$category_id.'(,|$)\''; |
---|
| 358 | } |
---|
| 359 | $query.= ' |
---|
| 360 | ;'; |
---|
| 361 | $result = pwg_query($query); |
---|
| 362 | |
---|
| 363 | $subcats = array(); |
---|
| 364 | while ($row = mysql_fetch_array($result)) |
---|
| 365 | { |
---|
| 366 | array_push($subcats, $row['id']); |
---|
| 367 | } |
---|
| 368 | return $subcats; |
---|
| 369 | } |
---|
[614] | 370 | |
---|
[2047] | 371 | /** finds a matching category id from a potential list of permalinks |
---|
| 372 | * @param array permalinks example: holiday holiday/france holiday/france/paris |
---|
| 373 | * @param int idx - output of the index in $permalinks that matches |
---|
| 374 | * return category id or null if no match |
---|
[1866] | 375 | */ |
---|
[2047] | 376 | function get_cat_id_from_permalinks( $permalinks, &$idx ) |
---|
[1866] | 377 | { |
---|
[2047] | 378 | $in = ''; |
---|
| 379 | foreach($permalinks as $permalink) |
---|
[1866] | 380 | { |
---|
[2047] | 381 | if ( !empty($in) ) $in.=', '; |
---|
| 382 | $in .= '"'.$permalink.'"'; |
---|
[1866] | 383 | } |
---|
[2047] | 384 | $query =' |
---|
[2356] | 385 | SELECT cat_id AS id, permalink, 1 AS is_old |
---|
| 386 | FROM '.OLD_PERMALINKS_TABLE.' |
---|
| 387 | WHERE permalink IN ('.$in.') |
---|
[2047] | 388 | UNION |
---|
| 389 | SELECT id, permalink, 0 AS is_old |
---|
| 390 | FROM '.CATEGORIES_TABLE.' |
---|
| 391 | WHERE permalink IN ('.$in.') |
---|
| 392 | ;'; |
---|
| 393 | $perma_hash = hash_from_query($query, 'permalink'); |
---|
[1866] | 394 | |
---|
[2047] | 395 | if ( empty($perma_hash) ) |
---|
| 396 | return null; |
---|
| 397 | for ($i=count($permalinks)-1; $i>=0; $i--) |
---|
[1866] | 398 | { |
---|
[2047] | 399 | if ( isset( $perma_hash[ $permalinks[$i] ] ) ) |
---|
| 400 | { |
---|
| 401 | $idx = $i; |
---|
| 402 | $cat_id = $perma_hash[ $permalinks[$i] ]['id']; |
---|
| 403 | if ($perma_hash[ $permalinks[$i] ]['is_old']) |
---|
| 404 | { |
---|
| 405 | $query=' |
---|
[1866] | 406 | UPDATE '.OLD_PERMALINKS_TABLE.' SET last_hit=NOW(), hit=hit+1 |
---|
[2047] | 407 | WHERE permalink="'.$permalinks[$i].'" AND cat_id='.$cat_id.' |
---|
[1866] | 408 | LIMIT 1'; |
---|
[2047] | 409 | pwg_query($query); |
---|
| 410 | } |
---|
| 411 | return $cat_id; |
---|
| 412 | } |
---|
[1866] | 413 | } |
---|
[2047] | 414 | return null; |
---|
[1866] | 415 | } |
---|
| 416 | |
---|
[614] | 417 | function global_rank_compare($a, $b) |
---|
| 418 | { |
---|
| 419 | return strnatcasecmp($a['global_rank'], $b['global_rank']); |
---|
| 420 | } |
---|
[1036] | 421 | |
---|
| 422 | function rank_compare($a, $b) |
---|
| 423 | { |
---|
| 424 | if ($a['rank'] == $b['rank']) |
---|
| 425 | { |
---|
| 426 | return 0; |
---|
| 427 | } |
---|
| 428 | |
---|
| 429 | return ($a['rank'] < $b['rank']) ? -1 : 1; |
---|
| 430 | } |
---|
[1624] | 431 | |
---|
| 432 | /** |
---|
| 433 | * returns display text for information images of category |
---|
| 434 | * |
---|
| 435 | * @param array categories |
---|
| 436 | * @return string |
---|
| 437 | */ |
---|
[1851] | 438 | function get_display_images_count($cat_nb_images, $cat_count_images, $cat_count_categories, $short_message = true, $Separator = '\n') |
---|
[1624] | 439 | { |
---|
| 440 | $display_text = ''; |
---|
| 441 | |
---|
[1851] | 442 | if ($cat_count_images > 0) |
---|
| 443 | { |
---|
| 444 | if ($cat_nb_images > 0 and $cat_nb_images < $cat_count_images) |
---|
| 445 | { |
---|
| 446 | $display_text.= get_display_images_count($cat_nb_images, $cat_nb_images, 0, $short_message, $Separator).$Separator; |
---|
| 447 | $cat_count_images-= $cat_nb_images; |
---|
| 448 | $cat_nb_images = 0; |
---|
| 449 | } |
---|
[2117] | 450 | |
---|
[1851] | 451 | //at least one image direct or indirect |
---|
[2265] | 452 | $display_text.= l10n_dec('%d element', '%d elements', $cat_count_images); |
---|
[1624] | 453 | |
---|
[1851] | 454 | if ($cat_count_categories == 0 or $cat_nb_images == $cat_count_images) |
---|
| 455 | { |
---|
| 456 | //no descendant categories or descendants do not contain images |
---|
[1624] | 457 | if (! $short_message) |
---|
| 458 | { |
---|
| 459 | $display_text.= ' '.l10n('images_available_cpl'); |
---|
| 460 | } |
---|
| 461 | } |
---|
| 462 | else |
---|
| 463 | { |
---|
[1637] | 464 | $display_text.= ' '.l10n_dec('images_available_cat', 'images_available_cats', $cat_count_categories); |
---|
[1624] | 465 | } |
---|
| 466 | } |
---|
| 467 | |
---|
| 468 | return $display_text; |
---|
| 469 | } |
---|
| 470 | |
---|
[2325] | 471 | /** |
---|
| 472 | * returns the link of upload menu |
---|
| 473 | * |
---|
| 474 | * @param null |
---|
| 475 | * @return string or null |
---|
| 476 | */ |
---|
| 477 | function get_upload_menu_link() |
---|
| 478 | { |
---|
| 479 | global $conf, $page, $user; |
---|
| 480 | |
---|
| 481 | $show_link = false; |
---|
| 482 | $arg_link = null; |
---|
| 483 | |
---|
| 484 | if (is_autorize_status($conf['upload_user_access'])) |
---|
| 485 | { |
---|
| 486 | if (isset($page['category']) and $page['category']['uploadable'] ) |
---|
| 487 | { |
---|
| 488 | // upload a picture in the category |
---|
| 489 | $show_link = true; |
---|
| 490 | $arg_link = 'cat='.$page['category']['id']; |
---|
| 491 | } |
---|
| 492 | else |
---|
| 493 | if ($conf['upload_link_everytime']) |
---|
| 494 | { |
---|
| 495 | // upload a picture in the category |
---|
| 496 | $query = ' |
---|
| 497 | SELECT |
---|
| 498 | 1 |
---|
| 499 | FROM '.CATEGORIES_TABLE.' INNER JOIN '.USER_CACHE_CATEGORIES_TABLE.' |
---|
| 500 | ON id = cat_id and user_id = '.$user['id'].' |
---|
| 501 | WHERE |
---|
| 502 | uploadable = \'true\' |
---|
| 503 | '.get_sql_condition_FandF |
---|
| 504 | ( |
---|
| 505 | array |
---|
| 506 | ( |
---|
| 507 | 'visible_categories' => 'id', |
---|
| 508 | ), |
---|
| 509 | 'AND' |
---|
| 510 | ).' |
---|
| 511 | LIMIT 1'; |
---|
| 512 | |
---|
| 513 | $show_link = mysql_num_rows(pwg_query($query)) <> 0; |
---|
| 514 | } |
---|
| 515 | } |
---|
| 516 | if ($show_link) |
---|
| 517 | { |
---|
| 518 | return get_root_url().'upload.php'.(empty($arg_link) ? '' : '?'.$arg_link); |
---|
| 519 | } |
---|
| 520 | else |
---|
| 521 | { |
---|
| 522 | return; |
---|
| 523 | } |
---|
| 524 | } |
---|
| 525 | |
---|
[2769] | 526 | ?> |
---|