Пример #1
0
 public function __construct($length = 20, $total = 0, $action = '?', $grid = NULL)
 {
     // The grid which contains this component )
     parent::__construct();
     $this->pageLength = $length;
     $this->gridCount = $length;
     $this->setRowCount($total);
     $this->grid = $grid;
     $this->setPageNumber($this->grid->pageNumber);
     $this->action = $action;
     $this->linktype = 'hyperlink';
 }
Пример #2
0
 public function __construct($name = null)
 {
     parent::__construct($name);
 }
Пример #3
0
 public function __construct($module = false, $name = false, $home = false)
 {
     parent::__construct();
     $this->path = $this->manager->getModulePath($module, $name);
     $this->home = $home;
 }
Пример #4
0
 public function __construct($object, $target)
 {
     parent::__construct();
     $this->object = $object;
     $this->target = $target;
 }