smarty template engine
Thursday, November 20, 2008  
download | documentation | faq | forum | mailing lists | changelog | contribs 


search for in the  


get_registered_object()

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-1. 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




 

credits 

Smarty Copyright © 2002-2008
New Digital Group, Inc.

All rights reserved.