- remove compatibility with old template ...

git-svn-id: http://piwigo.org/svn/trunk@2290 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2008-03-23 00:04:46 +00:00
parent 6281b24550
commit ee70a108be
9 changed files with 21 additions and 831 deletions
+2 -32
View File
@@ -278,36 +278,6 @@ function display_select_categories($categories,
{
global $template;
// TODO - remove from here after old template removed
foreach ($categories as $category)
{
$selected = '';
if (in_array($category['id'], $selecteds))
{
$selected = ' selected="selected"';
}
if ($fullname)
{
$option = get_cat_display_name_cache($category['uppercats'],
null,
false);
}
else
{
$option = str_repeat(' ',
(3 * substr_count($category['global_rank'], '.')));
$option.= '- '.$category['name'];
}
$template->_old->assign_block_vars(
$blockname,
array('SELECTED'=>$selected,
'VALUE'=>$category['id'],
'OPTION'=>$option
));
}
// TODO - remove until here after old template removed
$tpl_cats = array();
foreach ($categories as $category)
{
@@ -326,8 +296,8 @@ function display_select_categories($categories,
$tpl_cats[ $category['id'] ] = $option;
}
$template->smarty->assign( $blockname, $tpl_cats);
$template->smarty->assign( $blockname.'_selected', $selecteds);
$template->assign( $blockname, $tpl_cats);
$template->assign( $blockname.'_selected', $selecteds);
}
function display_select_cat_wrapper($query, $selecteds, $blockname,