Пример #1
0
 function __construct($title = null, $section_id = null)
 {
     parent::__construct();
     $this->title = $title;
     $this->section_id = $section_id;
     $this->title_weight = 'h2';
 }
Пример #2
0
 function __construct($title, $page_action, $action = '#')
 {
     parent::__construct();
     $this->title = $title;
     $this->page_action = $page_action;
     $this->action = $action;
     $this->row = array();
     $this->seek_index = 0;
 }
Пример #3
0
 function __construct($title, $action, $id, $submitPage = './', $custom_id = '')
 {
     parent::__construct();
     $this->id = $id;
     $this->title = $title;
     $this->action = $action;
     $this->submitPage = $submitPage;
     $this->custom_id = $custom_id . (strlen($custom_id) > 1 ? '_' : '');
 }
 public function __construct(Clazz $componentType, $expectedSize)
 {
     parent::__construct();
     $this->componentType = $componentType;
     $this->expectedSize = $expectedSize;
 }
Пример #5
0
 /**
  * @param string $name
  * @param bool $isFifo
  */
 public function __construct($name, $isFifo = true)
 {
     $this->fifo = $isFifo;
     parent::__construct($name);
 }
Пример #6
0
 public function __construct($name, $length)
 {
     parent::__construct($name);
     $this->length = $length;
 }