'; // print_r($_POST); // echo ''; // exit(); switch ($_POST['target']) { case 'all' : { $collection = $page['cat_elements_id']; break; } case 'selection' : { if (!isset($_POST['selection']) or count($_POST['selection']) == 0) { array_push($page['errors'], l10n('Select at least one picture')); } else { $collection = $_POST['selection']; } break; } } if (isset($_POST['add_tags']) and count($collection) > 0) { add_tags($_POST['add_tags'], $collection); } if (isset($_POST['del_tags']) and count($collection) > 0) { $query = ' DELETE FROM '.IMAGE_TAG_TABLE.' WHERE image_id IN ('.implode(',', $collection).') AND tag_id IN ('.implode(',', $_POST['del_tags']).') ;'; pwg_query($query); } if ($_POST['associate'] != 0 and count($collection) > 0) { associate_images_to_categories( $collection, array($_POST['associate']) ); } if ($_POST['dissociate'] != 0 and count($collection) > 0) { // physical links must not be broken, so we must first retrieve image_id // which create virtual links with the category to "dissociate from". $query = ' SELECT id FROM '.IMAGE_CATEGORY_TABLE.' INNER JOIN '.IMAGES_TABLE.' ON image_id = id WHERE category_id = '.$_POST['dissociate'].' AND id IN ('.implode(',', $collection).') AND category_id != storage_category_id ;'; $dissociables = array_from_query($query, 'id'); if (!empty($dissociables)) { $query = ' DELETE FROM '.IMAGE_CATEGORY_TABLE.' WHERE category_id = '.$_POST['dissociate'].' AND image_id IN ('.implode(',', $dissociables).') '; pwg_query($query); } update_category($_POST['dissociate']); } $datas = array(); $dbfields = array('primary' => array('id'), 'update' => array()); $formfields = array('author', 'name', 'date_creation'); foreach ($formfields as $formfield) { if ($_POST[$formfield.'_action'] != 'leave') { array_push($dbfields['update'], $formfield); } } // updating elements is useful only if needed... if (count($dbfields['update']) > 0 and count($collection) > 0) { $query = ' SELECT id FROM '.IMAGES_TABLE.' WHERE id IN ('.implode(',', $collection).') ;'; $result = pwg_query($query); while ($row = mysql_fetch_array($result)) { $data = array(); $data['id'] = $row['id']; if ('set' == $_POST['author_action']) { $data['author'] = $_POST['author']; if ('' == $data['author']) { unset($data['author']); } } if ('set' == $_POST['name_action']) { $data['name'] = $_POST['name']; if ('' == $data['name']) { unset($data['name']); } } if ('set' == $_POST['date_creation_action']) { $data['date_creation'] = $_POST['date_creation_year'] .'-'.$_POST['date_creation_month'] .'-'.$_POST['date_creation_day'] ; } array_push($datas, $data); } // echo '
'; print_r($datas); echo '
'; mass_updates(IMAGES_TABLE, $dbfields, $datas); } } // +-----------------------------------------------------------------------+ // | template init | // +-----------------------------------------------------------------------+ $template->set_filenames( array('element_set_global' => 'admin/element_set_global.tpl')); $base_url = PHPWG_ROOT_PATH.'admin.php'; // $form_action = $base_url.'?page=element_set_global'; $template->assign_vars( array( 'CATEGORIES_NAV'=>$page['title'], 'L_SUBMIT'=>$lang['submit'], 'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')), 'U_UNIT_MODE' => $base_url .get_query_string_diff(array('mode','display')) .'&mode=unit', 'F_ACTION'=>$base_url.get_query_string_diff(array()), ) ); // +-----------------------------------------------------------------------+ // | caddie options | // +-----------------------------------------------------------------------+ if ('caddie' == $_GET['cat']) { $template->assign_block_vars('in_caddie', array()); } else { $template->assign_block_vars('not_in_caddie', array()); } // +-----------------------------------------------------------------------+ // | global mode form | // +-----------------------------------------------------------------------+ // Virtualy associate a picture to a category $blockname = 'associate_option'; $template->assign_block_vars( $blockname, array('SELECTED' => '', 'VALUE'=> 0, 'OPTION' => '------------' )); $query = ' SELECT id,name,uppercats,global_rank FROM '.CATEGORIES_TABLE.' ;'; display_select_cat_wrapper($query, array(), $blockname, true); // Dissociate from a category : categories listed for dissociation can // only represent virtual links. Links to physical categories can't be // broken $blockname = 'dissociate_option'; $template->assign_block_vars( $blockname, array('SELECTED' => '', 'VALUE'=> 0, 'OPTION' => '------------' )); if (count($page['cat_elements_id']) > 0) { $query = ' SELECT DISTINCT(category_id) AS id, c.name, uppercats, global_rank FROM '.IMAGE_CATEGORY_TABLE.' AS ic, '.CATEGORIES_TABLE.' AS c, '.IMAGES_TABLE.' AS i WHERE ic.image_id IN ('.implode(',', $page['cat_elements_id']).') AND ic.category_id = c.id AND ic.image_id = i.id AND ic.category_id != i.storage_category_id ;'; display_select_cat_wrapper($query, array(), $blockname, true); } $all_tags = get_all_tags(); if (count($all_tags) == 0) { $add_tag_selection = '

'. l10n('No tag defined. Use Administration>Pictures>Tags'). '

'; } else { $add_tag_selection = get_html_tag_selection( $all_tags, 'add_tags' ); } // add tags $template->assign_vars( array( 'ADD_TAG_SELECTION' => $add_tag_selection, ) ); if (count($page['cat_elements_id']) > 0) { // remove tags $tags = get_common_tags($page['cat_elements_id'], -1); usort($tags, 'name_compare'); $template->assign_vars( array( 'DEL_TAG_SELECTION' => get_html_tag_selection($tags, 'del_tags'), ) ); } // creation date $day = empty($_POST['date_creation_day']) ? date('j') : $_POST['date_creation_day']; get_day_list('date_creation_day', $day); if (!empty($_POST['date_creation_month'])) { $month = $_POST['date_creation_month']; } else { $month = date('n'); } get_month_list('date_creation_month', $month); if (!empty($_POST['date_creation_year'])) { $year = $_POST['date_creation_year']; } else { $year = date('Y'); } $template->assign_vars(array('DATE_CREATION_YEAR_VALUE'=>$year)); // +-----------------------------------------------------------------------+ // | global mode thumbnails | // +-----------------------------------------------------------------------+ // how many items to display on this page if (!empty($_GET['display'])) { if ('all' == $_GET['display']) { $page['nb_images'] = count($page['cat_elements_id']); } else { $page['nb_images'] = intval($_GET['display']); } } else { $page['nb_images'] = 20; } if (count($page['cat_elements_id']) > 0) { $nav_bar = create_navigation_bar( $base_url.get_query_string_diff(array('start')), count($page['cat_elements_id']), $page['start'], $page['nb_images'] ); $template->assign_vars(array('NAV_BAR' => $nav_bar)); $query = ' SELECT id,path,tn_ext,file,filesize FROM '.IMAGES_TABLE.' WHERE id IN ('.implode(',', $page['cat_elements_id']).') '.$conf['order_by'].' LIMIT '.$page['start'].', '.$page['nb_images'].' ;'; //echo '
'.$query.'
'; $result = pwg_query($query); // template thumbnail initialization if (mysql_num_rows($result) > 0) { $template->assign_block_vars('thumbnails', array()); } while ($row = mysql_fetch_assoc($result)) { $src = get_thumbnail_url($row); $template->assign_block_vars( 'thumbnails.thumbnail', array( 'ID' => $row['id'], 'SRC' => $src, 'ALT' => $row['file'], 'TITLE' => get_thumbnail_title($row) ) ); } } //----------------------------------------------------------- sending html code $template->assign_var_from_handle('ADMIN_CONTENT', 'element_set_global'); ?>