예제 #1
0
 protected function processInternal()
 {
     parent::processInternal();
     $pager = $this->ui->getWidget('pager');
     $pager->process();
     $this->ui->getWidget('search_disclosure')->open = !$this->hasState();
 }
예제 #2
0
파일: Index.php 프로젝트: GervaisdeM/blorg
 protected function processInternal()
 {
     parent::processInternal();
     $this->ui->getWidget('pager')->process();
     if ($this->hasSearch()) {
         $this->ui->getWidget('search_frame')->open = true;
     }
 }
예제 #3
0
파일: Index.php 프로젝트: gauthierm/pinhole
 protected function processInternal()
 {
     parent::processInternal();
     $pager = $this->ui->getWidget('pager');
     $pager->process();
     if ($pager->getCurrentPage() > 0) {
         $disclosure = $this->ui->getWidget('search_disclosure');
         $disclosure->open = false;
     }
 }
예제 #4
0
파일: Index.php 프로젝트: gauthierm/pinhole
 protected function processInternal()
 {
     parent::processInternal();
     $pager = $this->ui->getWidget('pager');
     $pager->process();
 }