*** empty log message ***

This commit is contained in:
sebastian 2005-02-14 19:38:30 +00:00
parent b74cb6e047
commit b3826ce30c
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: postfilter.template_marker.php
* Type: postfilter
* Name: template_marker
* Version: 1.0
* Date: March, 2003
* Purpose: Mark the Template begin and end
* Install: Drop into the plugin directory, call
* $smarty->load_filter('post','template_marker');
* from application.
* Author: Erik Seifert <shaggy@gmx.at>
* -------------------------------------------------------------
*/
function smarty_postfilter_template_marker($compiled, &$smarty)
{
return '<!-- BEGIN : ' . $smarty->_current_file . ' -->' . $compiled . '<!-- END : ' . $smarty->_current_file . ' -->';
}
?>

View File

@ -0,0 +1,21 @@
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: postfilter.template_marker.php
* Type: postfilter
* Name: template_marker
* Version: 1.0
* Date: March, 2003
* Purpose: Mark the Template begin and end
* Install: Drop into the plugin directory, call
* $smarty->load_filter('post','template_marker');
* from application.
* Author: Erik Seifert <shaggy@gmx.at>
* -------------------------------------------------------------
*/
function smarty_postfilter_template_marker($compiled, &$smarty)
{
return '<!-- BEGIN : ' . $smarty->_current_file . ' -->' . $compiled . '<!-- END : ' . $smarty->_current_file . ' -->';
}
?>