Ejemplo n.º 1
0
 public function __construct($title = '', $action = '', $icon = '')
 {
     parent::__construct();
     $this->setHTMLTitle($title);
     $this->icon = $icon;
     $this->action = $action;
 }
Ejemplo n.º 2
0
 public function __construct($name = NULL, $label = NULL, $location = NULL, $attrs = NULL)
 {
     parent::__construct();
     $this->image = new MImage($name, $label, $location, $attrs);
     $this->mlabel = new MLabel($label);
     $this->setClass('mImageCentered');
 }
Ejemplo n.º 3
0
 public function __construct($label = '', $action = '', $icon = '', $useStore = false)
 {
     parent::__construct();
     $this->label = $label;
     $this->icon = $icon;
     $this->action = $action;
     $this->useStore = $useStore;
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     $a = 'teste';
     parent::__construct('userBar', $a, 'mUserBar');
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     parent::__construct('', '', 'mHr');
 }
Ejemplo n.º 6
0
 public function __construct($object, $target)
 {
     parent::__construct();
     $this->object = $object;
     $this->target = $target;
 }