public function __construct($title = '', $url = '', $active = false, $properties = null)
 {
     parent::__construct();
     $this->active = $active;
     $this->title = $title;
     $this->url = $url;
 }
예제 #2
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;
 }
예제 #3
0
 public function __construct($id = '', $title = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->title = $title;
     $this->actions = new anvilContainer();
 }
 public function __construct($id = '', $label = '', $labelForID = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->label = $label;
     $this->labelForID = $labelForID;
 }
예제 #5
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();
 }
예제 #6
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;
 }
예제 #7
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;
 }
예제 #8
0
 public function renderPostClientScript()
 {
     $return = '';
     $return .= parent::renderPostClientScript();
     return $return;
 }
 public function __construct($properties = null)
 {
     parent::__construct(0, $properties);
 }
예제 #10
0
 public function __construct($id = '', $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
 }
예제 #11
0
 /**
  * @param string $id
  * @param string $title
  * @param string $url
  * @param bool   $active
  *
  * @return anvilTabItem
  */
 public function addTab($id, $title, $url = '', $active = false)
 {
     $objTab = new anvilTabItem($id, $title, $url, $active);
     $this->_tabs->addControl($objTab);
     return $objTab;
 }
예제 #12
0
 public function __construct($id = '', $active = false, $properties = null)
 {
     $this->enableLog();
     parent::__construct($id, $properties);
     $this->active = $active;
 }