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

get_registered_object

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
	}
}