mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-10 02:33:02 +02:00
feature 519: quick search (first version)
git-svn-id: http://piwigo.org/svn/trunk@1537 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -198,6 +198,41 @@ if (is_admin() and !empty($page['items']) )
|
||||
);
|
||||
}
|
||||
|
||||
if ( $page['section']=='search' and $page['start']==0 )
|
||||
{
|
||||
$tags = get_common_tags($page['items'],
|
||||
$conf['content_tag_cloud_items_number'], null);
|
||||
if ( count($tags)>1 )
|
||||
{
|
||||
$template->assign_block_vars('related_tags', array() );
|
||||
|
||||
$tags = add_level_to_tags($tags);
|
||||
foreach ($tags as $tag)
|
||||
{
|
||||
$template->assign_block_vars(
|
||||
'related_tags.tag', array(
|
||||
'URL' => make_index_url(
|
||||
array(
|
||||
'tags' => array(
|
||||
array(
|
||||
'id' => $tag['tag_id'],
|
||||
'url_name' => $tag['url_name'],
|
||||
),
|
||||
)
|
||||
)
|
||||
),
|
||||
'NAME' => $tag['name'],
|
||||
'TITLE' => sprintf(
|
||||
l10n('%d pictures are also linked to current tags'),
|
||||
$tag['counter']
|
||||
),
|
||||
'CLASS' => 'tagLevel'.$tag['level']
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//------------------------------------------------------ main part : thumbnails
|
||||
if (isset($page['thumbnails_include']))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user