Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

get_registered_object() — returns a reference to a registered object

Description

array get_registered_object(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 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
  }
}
?>

   

See also register_object(), unregister_object() and objects page