Beispiel #1
0
 public function action_index()
 {
     // display
     $this->template->show_logout = TRUE;
     $this->template->title = 'Dashboard';
     $count_movies = Model_Links::countLinks(1);
     $count_songs = Model_Links::countLinks(2);
     $this->template->content = View::factory('dashboard/dashboard')->set('count_movies', $count_movies)->set('count_songs', $count_songs);
 }