示例#1
0
 function notification()
 {
     if ($_POST) {
         $model = new Cabinet();
         $model->saveNotification();
         View::$layout = 'empty';
         View::render('site/redirect', array('text' => 'Данные успешно сохранены', 'href' => '/cabinet/notification/'));
     } else {
         $model = new Cabinet();
         $data = $model->getNotification();
         View::render('cabinet/notification', $data);
     }
 }