*** empty log message ***
This commit is contained in:
parent
b74cb6e047
commit
b3826ce30c
|
@ -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 . ' -->';
|
||||
}
|
||||
?>
|
|
@ -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 . ' -->';
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue