= SUBDATE( CURRENT_DATE,INTERVAL '.$user['recent_period'].' DAY ) '.get_sql_condition_FandF ( array ( 'visible_categories' => 'id', ), 'AND' ).' ;'; } else { // $user['forbidden_categories'] including with USER_CACHE_CATEGORIES_TABLE $query = ' SELECT id, name, permalink, representative_picture_id, comment, nb_images, date_last, max_date_last, count_images, count_categories FROM '.CATEGORIES_TABLE.' INNER JOIN '.USER_CACHE_CATEGORIES_TABLE.' ON id = cat_id and user_id = '.$user['id'].' WHERE id_uppercat '. (!isset($page['category']) ? 'is NULL' : '= '.$page['category']['id']).' '.get_sql_condition_FandF ( array ( 'visible_categories' => 'id', ), 'AND' ).' ORDER BY rank ;'; } $result = pwg_query($query); $categories = array(); $category_ids = array(); $image_ids = array(); while ($row = mysql_fetch_assoc($result)) { $row['is_child_date_last'] = @$row['max_date_last']>@$row['date_last']; if (isset($row['representative_picture_id']) and is_numeric($row['representative_picture_id'])) { // if a representative picture is set, it has priority $image_id = $row['representative_picture_id']; } else if ($conf['allow_random_representative']) {// searching a random representant among elements in sub-categories $query = ' SELECT image_id FROM '.CATEGORIES_TABLE.' AS c INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON ic.category_id = c.id'; $query.= ' WHERE uppercats REGEXP \'(^|,)'.$row['id'].'(,|$)\' '.get_sql_condition_FandF ( array ( 'forbidden_categories' => 'c.id', 'visible_categories' => 'c.id', 'visible_images' => 'image_id' ), 'AND' ).' ORDER BY RAND() LIMIT 0,1 ;'; $subresult = pwg_query($query); if (mysql_num_rows($subresult) > 0) { list($image_id) = mysql_fetch_row($subresult); } } else { // searching a random representant among representant of sub-categories $query = ' SELECT representative_picture_id FROM '.CATEGORIES_TABLE.' INNER JOIN '.USER_CACHE_CATEGORIES_TABLE.' ON id = cat_id and user_id = '.$user['id'].' WHERE uppercats REGEXP \'(^|,)'.$row['id'].'(,|$)\' AND representative_picture_id IS NOT NULL '.get_sql_condition_FandF ( array ( 'visible_categories' => 'id', ), 'AND' ).' ORDER BY RAND() LIMIT 0,1 ;'; $subresult = pwg_query($query); if (mysql_num_rows($subresult) > 0) { list($image_id) = mysql_fetch_row($subresult); } } if (isset($image_id)) { $row['representative_picture_id'] = $image_id; array_push($image_ids, $image_id); array_push($categories, $row); array_push($category_ids, $row['id']); } unset($image_id); } if ($conf['display_fromto']) { $dates_of_category = array(); if (count($category_ids) > 0) { $query = ' SELECT category_id, MIN(date_creation) AS date_creation_min, MAX(date_creation) AS date_creation_max FROM '.IMAGE_CATEGORY_TABLE.' INNER JOIN '.USER_CACHE_CATEGORIES_TABLE.' ON category_id = cat_id and user_id = '.$user['id'].' INNER JOIN '.IMAGES_TABLE.' ON image_id = id WHERE category_id IN ('.implode(',', $category_ids).') '.get_sql_condition_FandF ( array ( 'visible_categories' => 'category_id', 'visible_images' => 'image_id' ), 'AND' ).' GROUP BY category_id ;'; $result = pwg_query($query); while ($row = mysql_fetch_array($result)) { $dates_of_category[ $row['category_id'] ] = array( 'from' => $row['date_creation_min'], 'to' => $row['date_creation_max'], ); } // echo '
'; print_r($dates_of_category); echo ''; } } if ($page['section']=='recent_cats') { usort($categories, 'global_rank_compare'); } if (count($categories) > 0) { $thumbnail_src_of = array(); $query = ' SELECT id, path, tn_ext FROM '.IMAGES_TABLE.' WHERE id IN ('.implode(',', $image_ids).') ;'; $result = pwg_query($query); while ($row = mysql_fetch_assoc($result)) { $thumbnail_src_of[$row['id']] = get_thumbnail_url($row); } } if (count($categories) > 0) { // Update filtered data if (function_exists('update_cats_with_filtered_data')) { update_cats_with_filtered_data($categories); } trigger_action('loc_begin_index_category_thumbnails', $categories); if ($conf['subcatify']) { $template->set_filename('mainpage_categories', 'mainpage_categories.tpl'); foreach ($categories as $category) { $comment = strip_tags(@$category['comment'], '
');
if ($page['section']=='recent_cats')
{
$name = get_cat_display_name_cache($category['uppercats'], null, false);
}
else
{
$name = $category['name'];
}
$icon_ts = get_icon($category['max_date_last'], $category['is_child_date_last']);
$template->assign_block_vars(
'categories.category',
array(
'SRC' => $thumbnail_src_of[$category['representative_picture_id']],
'ALT' => $category['name'],
'TITLE' => $lang['hint_category'],
'ICON' => $icon_ts,
'URL' => make_index_url(
array(
'category' => $category
)
),
'CAPTION_NB_IMAGES' => get_display_images_count
(
$category['nb_images'],
$category['count_images'],
$category['count_categories'],
true,
'
'
),
'DESCRIPTION' => @$comment,
'NAME' => $name,
)
);
if ($conf['display_fromto'])
{
if (isset($dates_of_category[ $category['id'] ]))
{
$from = $dates_of_category[ $category['id'] ]['from'];
$to = $dates_of_category[ $category['id'] ]['to'];
if (!empty($from))
{
$info = '';
if ($from == $to)
{
$info = format_date($from);
}
else
{
$info = sprintf(
l10n('from %s to %s'),
format_date($from),
format_date($to)
);
}
$template->assign_block_vars(
'categories.category.dates',
array(
'INFO' => $info,
)
);
}
}
}
//plugins need to add/modify sth in this loop ?
trigger_action('loc_index_category_thumbnail',
$category, 'categories.category' );
}
$template->assign_var_from_handle('CATEGORIES', 'mainpage_categories');
}
else
{
$template->set_filename( 'thumbnails', 'thumbnails.tpl');
// first line
$template->assign_block_vars('thumbnails.line', array());
// current row displayed
$row_number = 0;
if ($page['section']=='recent_cats')
{
$old_level_separator = $conf['level_separator'];
$conf['level_separator'] = '
';
}
foreach ($categories as $category)
{
$template->assign_block_vars(
'thumbnails.line.thumbnail',
array(
'IMAGE' => $thumbnail_src_of[ $category['representative_picture_id'] ],
'IMAGE_ALT' => $category['name'],
'IMAGE_TITLE' => get_display_images_count
(
$category['nb_images'],
$category['count_images'],
$category['count_categories'],
true,
' / '
),
'U_IMG_LINK' => make_index_url(
array(
'category' => $category
)
),
'CLASS' => 'thumbCat',
)
);
if ($page['section']=='recent_cats')
{
$name = get_cat_display_name_cache($category['uppercats'], null, false);
}
else
{
$name = $category['name'];
$template->merge_block_vars(
'thumbnails.line.thumbnail',
array(
'IMAGE_TS' => get_icon($category['max_date_last'], $category['is_child_date_last']),
)
);
}
$template->assign_block_vars(
'thumbnails.line.thumbnail.category_name',
array(
'NAME' => $name
)
);
//plugins need to add/modify sth in this loop ?
trigger_action('loc_index_category_thumbnail',
$category, 'thumbnails.line.thumbnail' );
// create a new line ?
if (++$row_number == $user['nb_image_line'])
{
$template->assign_block_vars('thumbnails.line', array());
$row_number = 0;
}
}
if ( isset($old_level_separator) )
{
$conf['level_separator']=$old_level_separator;
}
$template->assign_var_from_handle('CATEGORIES', 'thumbnails');
unset( $template->_tpldata['thumbnails.'] );//maybe write a func for that
}
trigger_action('loc_end_index_category_thumbnails', $categories);
}
?>