Kohana 3.1 Выпуск ссылок на страницы - PullRequest
2 голосов
/ 26 августа 2011

Я сделал пагинацию в Kohana 3.1, используя следующий код на странице моего контроллера. Как я могу отобразить ссылки пагинации на странице просмотра? Это правильный путь ??? или есть проблемы с моим кодом?

public function action_imagelist()
       {  
         $per_page =2;
         $page_num = $this->request->param('page', 1);
         $offset   = ($page_num - 1) * $per_page;
         $view =View::factory('image/imagelist')->bind('page_links',$page_links)->bind('results', $results)->bind('pagination', $pagination);

    // Get the total count of records in the database
     $userid = Auth::instance()->get_user()->pk();  
     $count=ORM::factory('user_image')->where('app_userid','=',$userid)->count_all(); 


     // Create an instance of Pagination class and set values
     $pagination = Pagination::factory(array( 

      'total_items'    => $count,
      'current_page'   => array('source' => 'image/imagelist', 'key' => 'page'), 
      'items_per_page' => $per_page,
      'offset'  =>  $offset,
      'view'    =>  'pagination/basic'
  ));


      // Load specific results for current page
  $results = DB::select()->from('user_images')
            ->where('app_userid','=',$userid)
            ->order_by('image_id','ASC')
            ->limit($pagination->items_per_page)
            ->offset($pagination->offset)->execute();

// print_r($results);
 $page_links = $pagination;
 $this->template->content=$view->render();

} 

1 Ответ

0 голосов
/ 26 августа 2011

Чтобы отобразить нумерацию страниц, на ваш взгляд распечатайте $page_links.

Вы должны прочитать, как вещи делятся на Шаблон MVC !

...