What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
array get_registered_object( |
object_name) ; |
string object_name
;Isso retorna uma referência para um objeto registrado. Isso é útil para dentro de uma função customizada quando você precisa acessar diretamente um objeto registrado.
Example 13.16. get_registered_object
function smarty_block_foo($params, &$smarty) { if (isset[$params['object']]) { // get reference to registered object $obj_ref =& $smarty->&get_registered_object($params['object']); // use $obj_ref is now a reference to the object } }