From 6e932e8752faae824cdcb1073014771163a600a7 Mon Sep 17 00:00:00 2001 From: rvelices Date: Sun, 2 Mar 2008 00:29:27 +0000 Subject: header.tpl goes smart git-svn-id: http://piwigo.org/svn/trunk@2240 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/common.inc.php | 8 +- include/page_header.php | 38 +++------ notification.php | 6 +- plugins/admin_advices/main.inc.php | 22 +++-- plugins/admin_multi_view/is_admin.inc.php | 5 +- template/yoga/header.tpl | 130 +++++++++++++----------------- 6 files changed, 86 insertions(+), 123 deletions(-) diff --git a/include/common.inc.php b/include/common.inc.php index 5986fe087..6776b5fb1 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -257,12 +257,8 @@ if (is_adviser()) if (count($header_msgs) > 0) { - $template->assign_block_vars('header_msgs',array()); - foreach ($header_msgs as $header_msg) - { - $template->assign_block_vars('header_msgs.header_msg', - array('HEADER_MSG'=>$header_msg)); - } + $template->assign('header_msgs', $header_msgs); + $header_msgs=array(); } if (!empty($conf['filter_pages']) and get_filter_page_value('used')) diff --git a/include/page_header.php b/include/page_header.php index 8f6e1a87b..dc0fe615f 100644 --- a/include/page_header.php +++ b/include/page_header.php @@ -4,7 +4,6 @@ // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | // | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ -// | branch : BSF (Best So Far) // | file : $Id$ // | last update : $Date$ // | last modifier : $Author$ @@ -32,7 +31,7 @@ $template->set_filenames(array('header'=>'header.tpl')); trigger_action('loc_begin_page_header'); -$template->assign_vars( +$template->assign( array( 'GALLERY_TITLE' => isset($page['gallery_title']) ? @@ -55,31 +54,19 @@ $template->assign_vars( 'U_HOME' => make_index_url(), )); -// picture header infos -if (isset($header_infos)) -{ - $template->assign_block_vars( 'header_meta', $header_infos); -} // Header notes -if ( isset($header_notes) and count($header_notes)>0) +if ( !empty($header_notes) ) { - foreach ($header_notes as $header_note) - { - $template->assign_block_vars('header_notes.header_note', - array('HEADER_NOTE' => $header_note)); - } + $template->assign('header_notes',$header_notes); } if ( !empty($page['meta_robots']) ) { - $template->assign_block_vars('head_element', - array( - 'CONTENT' => - '' - ) + $template->append('head_elements', + '' ); } @@ -87,13 +74,14 @@ if ( !empty($page['meta_robots']) ) if ( isset( $refresh ) and intval($refresh) >= 0 and isset( $url_link ) and isset( $redirect_msg ) ) { - $template->assign_vars( + $template->assign( array( - 'U_REDIRECT_MSG' => $redirect_msg, - 'REFRESH_TIME' => $refresh, - 'U_REFRESH' => $url_link + 'REDIRECT_MSG' => $redirect_msg, + 'page_refresh' => array( + 'TIME' => $refresh, + 'U_REFRESH' => $url_link + ) )); - $template->assign_block_vars('refresh', array()); } trigger_action('loc_end_page_header'); diff --git a/notification.php b/notification.php index 7bbe66cc1..6d5d67ae3 100644 --- a/notification.php +++ b/notification.php @@ -71,10 +71,8 @@ $title = l10n('Notification'); $page['body_id'] = 'theNotificationPage'; $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); -$template->assign_block_vars('head_element', - array( - 'CONTENT' => '' - ) +$template->append('head_elements', + '' ); include(PHPWG_ROOT_PATH.'include/page_header.php'); diff --git a/plugins/admin_advices/main.inc.php b/plugins/admin_advices/main.inc.php index 5df961ef0..fcefc1cb4 100644 --- a/plugins/admin_advices/main.inc.php +++ b/plugins/admin_advices/main.inc.php @@ -17,12 +17,10 @@ function set_admin_advice_add_css() and $page['page'] == 'intro' ) {// This Plugin works only on the Admin page - $template->assign_block_vars( - 'head_element', - array( - 'CONTENT' => '', - ) + $template->append( + 'head_elements', + '' ); add_event_handler('loc_begin_page_tail', 'set_admin_advice' ); } @@ -55,7 +53,7 @@ function set_admin_advice() // Random Thumbnail $query = ' SELECT * -FROM '.IMAGES_TABLE.' +FROM '.IMAGES_TABLE.' ORDER BY RAND(NOW()) LIMIT 0, 1 ;'; @@ -67,13 +65,13 @@ LIMIT 0, 1 .'&image_id='.$row['id']; $url_check = get_themeconf('icon_dir').'/'; $url_uncheck = $url_check . 'uncheck'; - $url_check .= 'check'; - $picture_id = $row['id']; + $url_check .= 'check'; + $picture_id = $row['id']; $query = ' -SELECT * FROM '.IMAGE_TAG_TABLE.' +SELECT * FROM '.IMAGE_TAG_TABLE.' WHERE image_id = ' . $picture_id .' ;'; - $tag_count = mysql_num_rows(mysql_query($query)); + $tag_count = mysql_num_rows(mysql_query($query)); $template->assign_block_vars( 'thumbnail', array( @@ -93,7 +91,7 @@ WHERE image_id = ' . $picture_id .' 'TAGS' => ($tag_count == 0) ? $url_uncheck : $url_check, 'NUM_TAGS' => (string) $tag_count, - 'U_MODIFY' => $url_modify, + 'U_MODIFY' => $url_modify, ) ); } diff --git a/plugins/admin_multi_view/is_admin.inc.php b/plugins/admin_multi_view/is_admin.inc.php index e94b719ba..7ae1f90dc 100644 --- a/plugins/admin_multi_view/is_admin.inc.php +++ b/plugins/admin_multi_view/is_admin.inc.php @@ -42,9 +42,6 @@ if ( theController.location.toString()=="about:blank" || !theController.location } '; - $template->assign_block_vars( 'head_element', array( - 'CONTENT' => $js - ) - ); + $template->append( 'head_elements', $js ); } ?> diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl index 19e9e755d..190ab1670 100644 --- a/template/yoga/header.tpl +++ b/template/yoga/header.tpl @@ -1,91 +1,77 @@ - +{* $Id$ *} - + - + - - - - - -{GALLERY_TITLE} :: {PAGE_TITLE} - - - - - - - - - - - - - - - - - - - - - +{$GALLERY_TITLE} :: {$PAGE_TITLE} + + + + +{if isset($first.U_IMG) }{/if} +{if isset($previous.U_IMG)}{/if} +{if isset($next.U_IMG) }{/if} +{if isset($last.U_IMG) }{/if} +{if isset($U_UP) }{/if} + + +{* the next css is used to fix khtml (Konqueror/Safari) issue the "text/nonsense" prevents gecko based browsers to load it *} + - + - - - - - - -{themeconf:local_head} - - - - - - - + + + +{$themeconf.local_head} +{if isset($U_PREFETCH) }{/if} + +{if not empty($page_refresh) }{/if} + + - -{head_element.CONTENT} - + +{if not empty($head_elements)} + {foreach from=$head_elements item=elt}{$elt}{/foreach} +{/if} + - +
- + +{if not empty($header_msgs)}
- -

{header_msgs.header_msg.HEADER_MSG}

- + {foreach from=$header_msgs item=elt} +

{$elt}

+ {/foreach}
- -
{PAGE_BANNER}
- +{/if} + +
{$PAGE_BANNER}
+ +{if not empty($header_notes)}
- -

{header_notes.header_note.HEADER_NOTE}

- + {foreach from=$header_notes item=elt} +

{$elt}

+ {/foreach}
- +{/if} -- cgit v1.2.3