- implementation of a 'variable' filter as replacement for default modifier

- update of unregister_....filter methods
This commit is contained in:
Uwe.Tews
2009-04-10 01:15:53 +00:00
parent a424da0671
commit 066467ca82
16 changed files with 221 additions and 50 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
* Smarty method disableVariableFilter
*
* Disable filter on variable output
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class disableVariableFilter
*
* Disable filter on variable output
*/
class Smarty_Method_disableVariableFilter extends Smarty_Internal_Base {
public function execute()
{
$this->smarty->variable_filter = false;
return;
}
}
?>