aboutsummaryrefslogtreecommitdiffstats
path: root/admin/help.php
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-03-20 00:52:37 +0000
committergweltas <gweltas@piwigo.org>2004-03-20 00:52:37 +0000
commit4128835db8d7b8e619951d4c31e23bd934758f09 (patch)
tree4fddd9ea03f3ebeeaba73c3a42f7130e29a54b58 /admin/help.php
parent8850aabc34e524e1a7816c363657e3176502a708 (diff)
- Template migration
- Admin Control Panel migration - Language migration git-svn-id: http://piwigo.org/svn/trunk@393 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/help.php')
-rw-r--r--admin/help.php28
1 files changed, 10 insertions, 18 deletions
diff --git a/admin/help.php b/admin/help.php
index 22669ce13..770d6d187 100644
--- a/admin/help.php
+++ b/admin/help.php
@@ -24,33 +24,25 @@
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
// | USA. |
// +-----------------------------------------------------------------------+
-include_once( './admin/include/isadmin.inc.php' );
+include_once( PHPWG_ROOT_PATH.'admin/include/isadmin.inc.php' );
//----------------------------------------------------- template initialization
-$sub = $vtp->Open( './template/'.$user['template'].'/admin/help.vtp' );
-$tpl = array( );
-templatize_array( $tpl, 'lang', $sub );
+$template->set_filenames( array('help'=>'admin/help.tpl') );
+
//----------------------------------------------------- help categories display
$categories = array( 'images','thumbnails','database','remote','upload',
'virtual','groups','access','infos' );
foreach ( $categories as $category ) {
- $vtp->addSession( $sub, 'cat' );
+ $template->assign_block_vars('cat', array('NAME'=>$lang['help_'.$category.'_title']));
if ( $category == 'images' )
{
- $vtp->addSession( $sub, 'illustration' );
- $vtp->setVar( $sub, 'illustration.pic_src', './admin/images/admin.png' );
- $vtp->setVar( $sub, 'illustration.pic_alt', '' );
- $vtp->setVar( $sub, 'illustration.caption', $lang['help_images_intro'] );
- $vtp->closeSession( $sub, 'illustration' );
+ $template->assign_block_vars('cat.illustration', array(
+ 'SRC_IMG'=>PHPWG_ROOT_PATH.'admin/images/admin.png',
+ 'CAPTION'=>$lang['help_images_intro']
+ ));
}
- $vtp->setVar( $sub, 'cat.name', $lang['help_'.$category.'_title'] );
foreach ( $lang['help_'.$category] as $item ) {
- $vtp->addSession( $sub, 'item' );
- $vtp->setVar( $sub, 'item.content', $item );
- $vtp->closeSession( $sub, 'item' );
+ $template->assign_block_vars('cat.item', array('CONTENT'=>$item));
}
-
- $vtp->closeSession( $sub, 'cat' );
}
-//----------------------------------------------------------- sending html code
-$vtp->Parse( $handle , 'sub', $sub );
+$template->assign_var_from_handle('ADMIN_CONTENT', 'help');
?>