Create navigation_bar.tpl file.

Move create_navigation_bar function from functions_html.inc.php to functions.inc.php.

git-svn-id: http://piwigo.org/svn/trunk@3172 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
patdenice
2009-03-05 21:08:04 +00:00
parent d3e6eabb05
commit 254aee2695
20 changed files with 167 additions and 189 deletions
+2 -5
View File
@@ -64,6 +64,7 @@ if (isset($page['category']))
check_restrictions($page['category']['id']);
}
$page['navigation_bar'] = array();
if (count($page['items']) > $user['nb_image_page'])
{
$page['navigation_bar'] = create_navigation_bar(
@@ -74,10 +75,6 @@ if (count($page['items']) > $user['nb_image_page'])
true
);
}
else
{
$page['navigation_bar'] = '';
}
// caddie filling :-)
if (isset($_GET['caddie']))
@@ -219,7 +216,7 @@ if ( $page['section']=='search' and $page['start']==0 and
}
// navigation bar
$template->assign( 'NAV_BAR', $page['navigation_bar'] );
$template->assign( 'navbar', $page['navigation_bar'] );
if ( count($page['items']) > 0
and $page['section'] != 'most_visited'