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:
getRegisteredObject() — returns a reference to a registered object
array getRegisteredObject(string object_name);
This is useful from within a custom function when you need direct access to a registered object. See the objects page for more info.
Example 14.28. getRegisteredObject()
<?php function smarty_block_foo($params, $smarty) { if (isset($params['object'])) { // get reference to registered object $obj_ref = $smarty->getRegisteredObject($params['object']); // use $obj_ref is now a reference to the object } } ?>
See also
registerObject()
,
unregisterObject()
and
objects page