Exemplo n.º 1
0
 public function __construct($id = '', $title = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->title = $title;
     $this->actions = new anvilContainer();
 }
 public function __construct($title = '', $url = '', $active = false, $properties = null)
 {
     parent::__construct();
     $this->active = $active;
     $this->title = $title;
     $this->url = $url;
 }
 public function __construct($id = '', $label = '', $labelForID = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->label = $label;
     $this->labelForID = $labelForID;
 }
Exemplo n.º 4
0
 public function __construct($id = 0, $position = self::POSITION_DEFAULT, $properties = null)
 {
     parent::__construct($id, $properties);
     $this->enableLog();
     $this->_tabs = new anvilContainer();
     $this->position = $position;
 }
Exemplo n.º 5
0
 public function __construct($id = '', $type = self::TYPE_DEFAULT, $align = self::ALIGN_DEFAULT, $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->align = $align;
     $this->type = $type;
 }
Exemplo n.º 6
0
 public function __construct($id = '', $method = self::METHOD_POST, $action = '', $type = self::TYPE_DEFAULT, $properties = null)
 {
     parent::__construct($id, $properties);
     $this->method = $method;
     $this->action = $action;
     $this->type = $type;
     $this->actions = new anvilContainer();
 }
Exemplo n.º 7
0
 public function __construct($id = 0, $title = '', $properties = null)
 {
     parent::__construct($id, $properties);
     $this->headerActions = new anvilContainer();
     //        $this->body = new anvilContainer();
     $this->footer = new anvilContainer();
     $this->title = $title;
 }
Exemplo n.º 8
0
 public function __construct($id = '', $type = self::TYPE_BULLET, $class = '', $properties = array(), $traceEnabled = false)
 {
     unset($this->type);
     //		$this->addProperty('class', '');
     $this->addProperty('type', self::TYPE_BULLET);
     parent::__construct($id, $properties, $traceEnabled);
     $this->type = $type;
     $this->class = $class;
 }
Exemplo n.º 9
0
 function __construct($id = '')
 {
     parent::__construct($id);
     $this->enableTrace();
     $this->name = 'New Widget';
     $this->refName = 'widget';
     $this->version = '1.0';
     $this->build = '1';
     return true;
 }
Exemplo n.º 10
0
 public function __construct($id = 'atr', $durationMS = 5000, $transitionMS = 1000, $class = '', $frameClass = '', $properties = array(), $traceEnabled = false)
 {
     $this->enableTrace();
     unset($this->durationMS);
     unset($this->frameClass);
     unset($this->transitionMS);
     unset($this->cssPath);
     unset($this->jsPath);
     $this->addProperty('durationMS', 5000);
     $this->addProperty('frameClass', '');
     $this->addProperty('transitionMS', 1000);
     $this->addProperty('cssPath', '/includes/atUI.css');
     $this->addProperty('jsPath', '/js/atUI.js');
     parent::__construct($id, $properties, $traceEnabled);
     $this->durationMS = $durationMS;
     $this->transitionMS = $transitionMS;
     $this->class = $class;
     $this->frameClass = $frameClass;
 }
Exemplo n.º 11
0
 public function __construct($properties = null)
 {
     parent::__construct(0, $properties);
 }
Exemplo n.º 12
0
 public function __construct($id = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
 }
Exemplo n.º 13
0
 public function __construct($id = '', $active = false, $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->active = $active;
 }