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() — Este retorna una referencia para un objeto registrado.

Descripción

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