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:
get_registered_object() — Este retorna una referencia para un objeto registrado.
array get_registered_object(string object_name);
Este es útil dentro de una función habitual cuando usted necesita acesar directamente a un objeto registrado. Ver objects para mas información;
Example 13.17. get_registered_object()
<?php 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 } } ?>
Ver también register_object(), unregister_object() y objects section