Beispiel #1
0
 /**
  * add news
  */
 public function action_add()
 {
     $data = array();
     if ($_POST) {
         $news = new Model_New();
         if ($news->insNew()) {
             $data = 'Новость добавлена';
         } else {
             $data = 'Новость не добавлена';
         }
     }
     $content = View::factory('admin/addview');
     $content->bind('data', $data);
     $this->template->content = $content;
 }