run() public method

This overrides the parent implementation by displaying the generated page buttons.
public run ( )
コード例 #1
0
ファイル: LinkPager.php プロジェクト: rocketyang/mincms
 public function run()
 {
     if ($this->pagination->getPageCount() <= 1) {
         return;
     }
     parent::run();
 }
コード例 #2
0
 /**
  * @inheridoc
  */
 public function run()
 {
     parent::run();
     echo Html::endTag($this->wrapper);
 }
コード例 #3
0
 public function run()
 {
     parent::run();
 }
コード例 #4
0
ファイル: Pager.php プロジェクト: vsguts/crm
 public function run()
 {
     parent::run();
     $this->renderPerPageSelector();
 }