Esempio n. 1
0
 public function __construct()
 {
     parent::__construct();
 }
Esempio n. 2
0
 /**
  * Обновляет  персистентные  данные  страницы.
  * @param WebPage  Экземпляр класса страницы
  * @param int  Номер  страницы
  * @param mixed  Версия  страницы
  */
 public final function updatePage(WebPage $page, $number)
 {
     $page->beforeSaveToSession();
     $this->pages[$number] = $page;
 }
Esempio n. 3
0
 public function __construct($params = null)
 {
     \Zippy\Html\WebPage::__construct();
     $this->add(new \ZippyERP\System\Blocks\Header("header"));
     $this->add(new \Zippy\Html\Label("errormessage", new PropertyBinding($this, '_errormsg')))->setVisible(false);
 }