Пример #1
0
 public function action_popular()
 {
     $view = new View('kwalbum/browse/popular');
     Model_Kwalbum_Item::set_sort_field('count');
     Model_Kwalbum_Item::set_sort_direction('DESC');
     $view->items = Model_Kwalbum_Item::get_thumbnails($this->page_number, $this->in_edit_mode);
     $this->template->content = $view;
     $this->template->title = 'browsing most popular';
 }