示例#1
0
文件: single.php 项目: ratbird/hope
 public function before_filter(&$action, &$args)
 {
     $this->base = 'calendar/single/';
     parent::before_filter($action, $args);
     if (Request::isXhr()) {
         $this->response->add_header('Content-Type', 'text/html; charset=windows-1252');
         $this->layout = null;
     }
 }
示例#2
0
文件: group.php 项目: ratbird/hope
 public function before_filter(&$action, &$args)
 {
     $this->base = 'calendar/group/';
     parent::before_filter($action, $args);
 }