Example #1
0
 /**
  * Constructor
  * @param e_admin_ui $controller
  * @param boolean $tabindex [optional] enable form element auto tab-indexing
  */
 function __construct($controller, $tabindex = false)
 {
     $this->_controller = $controller;
     parent::__construct($tabindex);
     // protect current methods from conflict.
     $this->preventConflict();
     // user constructor
     $this->init();
 }