|
eZ Publish
[trunk]
|
Displays left and right delimiter in templates. More...
Public Member Functions | |
| eZTemplateDelimitFunction () | |
| functionList () | |
| functionTemplateHints () | |
| hasChildren () | |
| process ($tpl, &$textElements, $functionName, $functionChildren, $functionParameters, $functionPlacement, $nspace, $current_nspace) | |
| templateNodeTransformation ($functionName, &$node, $tpl, $parameters, $privateData) | |
Public Attributes | |
| $LName | |
| The name of the left delimiter tag. | |
| $RName | |
| The name of the right delimiter tag. | |
Displays left and right delimiter in templates.
This class iss a template function for outputting the left and right delimiters. Since the left and right delimiters are always parsed by the template engine it's not possible to output these characters. By registering an instance of this class as template functions you can get these characters with {ldelim} and {rdelim}.
The name of these functions can also be controlled by passing the names to the constructor.
Example:
$tpl->registerFunctions( new eZTemplateDelimitFunction() ); // or custom names $tpl->registerFunctions( new eZTemplateDelimitFunction( "l", "r" ) ); // alternatively $obj = new eZTemplateDelimitFunction(); $tpl->registerFunction( "ldelim", $obj ); $tpl->registerFunction( "rdelim", $obj );
Definition at line 36 of file eztemplatedelimitfunction.php.
Initializes the object with a name for the left and right delimiter. Default is ldelim for left and rdelim for right.
Definition at line 42 of file eztemplatedelimitfunction.php.
Returns an array of the function names, required for eZTemplate::registerFunctions.
Definition at line 51 of file eztemplatedelimitfunction.php.
Returns an array with hints for the template compiler.
Definition at line 59 of file eztemplatedelimitfunction.php.
Returns false, telling the template parser that this is a single tag.
Definition at line 104 of file eztemplatedelimitfunction.php.
| eZTemplateDelimitFunction::process | ( | $ | tpl, |
| &$ | textElements, | ||
| $ | functionName, | ||
| $ | functionChildren, | ||
| $ | functionParameters, | ||
| $ | functionPlacement, | ||
| $ | nspace, | ||
| $ | current_nspace | ||
| ) |
Outputs the left or right delimiter if the function names match.
Definition at line 86 of file eztemplatedelimitfunction.php.
| eZTemplateDelimitFunction::templateNodeTransformation | ( | $ | functionName, |
| &$ | node, | ||
| $ | tpl, | ||
| $ | parameters, | ||
| $ | privateData | ||
| ) |
Definition at line 67 of file eztemplatedelimitfunction.php.
| eZTemplateDelimitFunction::$LName |
The name of the left delimiter tag.
Definition at line 110 of file eztemplatedelimitfunction.php.
| eZTemplateDelimitFunction::$RName |
The name of the right delimiter tag.
Definition at line 112 of file eztemplatedelimitfunction.php.