Exemplo n.º 1
0
 public function actionDefault($page = 1)
 {
     $this->data->itemsCount = Photo::countAll();
     $this->data->pageSize = self::PAGE_SIZE;
     $this->data->activePage = $page;
     $this->data->items = Photo::findAll(['order' => 'published DESC', 'offset' => ($page - 1) * self::PAGE_SIZE, 'limit' => self::PAGE_SIZE]);
 }