Esempio n. 1
0
 public function action_revision($name = '')
 {
     if (!($data['revisions'] = Model_Page::enum_revisions_by_title($name))) {
         throw new HttpNotFoundException();
     }
     $this->template->title = 'Revision of ' . (empty($name) ? '(top)' : $name);
     $this->template->name = $name;
     $this->template->content = View::forge('page/revision', $data);
 }