示例#1
0
 public function __construct($attributesList = [], $buttons = [], $template = "")
 {
     $this->buttons = $buttons;
     if (empty($template)) {
         $template = __DIR__ . self::DEFAULT_TEMPLATE;
     }
     parent::__construct($attributesList, $template);
 }
示例#2
0
 public function __construct($dataSet = [], $currentValue = null, $attributesList = [], $template = "")
 {
     parent::__construct($attributesList, $template, $dataSet, $currentValue);
 }
示例#3
0
 public function show()
 {
     if ($this->pagesNumber > 1) {
         parent::show();
     }
 }