示例#1
0
文件: Html.php 项目: eix/core
 public function __construct(HttpRequest $request = null)
 {
     $this->setContentType(self::CONTENT_TYPE);
     parent::__construct($request);
     // Set the initial title.
     try {
         $this->titleParts = array(Application::getCurrent()->getName());
     } catch (Exception $exception) {
         $this->titleParts = '';
     }
 }
示例#2
0
文件: Xml.php 项目: eix/core
 public function __construct(HttpRequest $request = null)
 {
     $this->setContentType(self::CONTENT_TYPE);
     parent::__construct($request);
 }