mirror of
https://github.com/smarty-php/smarty.git
synced 2026-08-15 01:41:21 +02:00
18 lines
325 B
PHP
18 lines
325 B
PHP
<?php
|
|||
|
|
namespace Smarty\Compile\Modifier;
|
||
|
|
/**
|
||
|
|
* Smarty noprint modifier plugin
|
||
|
|
* Type: modifier
|
||
|
|
* Name: noprint
|
||
|
|
* Purpose: return an empty string
|
||
|
|
*
|
||
|
|
* @author Uwe Tews
|
||
|
|
*/
|
||
|
|
|
||
|
|
class NoPrintModifierCompiler extends Base {
|
||
|
|
|
||
|
|
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
||
|
|
return "''";
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|