From 48c6d7e8a4d5b44a6c5c6fa919267d098ed28ee7 Mon Sep 17 00:00:00 2001 From: rvelices Date: Tue, 15 Aug 2006 02:06:06 +0000 Subject: feature 519: quick search (first version) git-svn-id: http://piwigo.org/svn/trunk@1537 68402e56-0260-453c-a942-63ccdbb3a9ee --- index.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'index.php') diff --git a/index.php b/index.php index cf3d9e434..5b6d011c4 100644 --- a/index.php +++ b/index.php @@ -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'])) { -- cgit v1.2.3