Beispiel #1
0
 public function articles()
 {
     $articles = Model_Article::getAllArticles();
     foreach ($articles as $article) {
         $article->views = $this->stats->get(Model_Stats::ARTICLE, $article->id);
     }
     $this->view["articles"] = $articles;
     return View::factory('templates/admin/articles/list', $this->view);
 }