Exemplo n.º 1
0
 /**
  * Constructor
  *
  * Initializes a TIP_Content instance.
  *
  * @param array $options Properties values
  */
 protected function __construct($options)
 {
     parent::__construct($options);
 }
Exemplo n.º 2
0
 /**
  * Constructor
  *
  * Initializes a TIP_Application instance.
  *
  * @param array $options Properties values
  */
 protected function __construct($options)
 {
     $GLOBALS[TIP_MAIN] =& $this;
     parent::__construct($options);
 }
Exemplo n.º 3
0
 /**
  * Constructor
  *
  * Initializes a TIP_Form instance.
  *
  * @param array $options Properties values
  */
 protected function __construct($options)
 {
     parent::__construct($options);
     HTML_QuickForm::registerRule('unique', 'callback', '_ruleUnique', 'TIP_Form');
 }