Ejemplo n.º 1
0
 public function action_index()
 {
     $this->template->page_title = 'List of Entries';
     $entry = new Model_Entry();
     $view = View::factory('cp/entries/list');
     $view->entries = $entry->get_entries_list();
     $this->template->content = $view->render();
 }