コード例 #1
0
ファイル: index.php プロジェクト: rashidyusmen/myproject
 public function index()
 {
     $products_collection = new ProductsCollection();
     $products = $products_collection->get_latest(4);
     $news_collection = new NewsCollection();
     $news = $news_collection->get_latest(3);
     $this->loadView('website/index', array('products' => $products, 'news' => $news));
 }
コード例 #2
0
ファイル: blog.php プロジェクト: rashidyusmen/myproject
 public function index()
 {
     $news_collection = new NewsCollection();
     $latest_news = $news_collection->get_latest(4);
     $per_page = 4;
     $page = isset($_GET['n']) ? $_GET['n'] : 1;
     $page_all = $news_collection->getTotalCount();
     $page_count = ceil($page_all / $per_page);
     $this->loadView('website/blog', array('latest_news' => $latest_news, 'page_count' => $page_count));
 }