コード例 #1
0
ファイル: PageView.php プロジェクト: andresusanto/sepatuku
 function htmlSite($middle, $options = NULL)
 {
     $this->data['csses'] = array(array('url' => $this->resource('css/blueprint/screen.css'), 'media' => 'screen, projection'));
     $this->data['ie_csses'] = array(array('url' => $this->resource('css/blueprint/ie.css'), 'media' => 'screen, projection'));
     if (!isset($options)) {
         $options = $this->_getDefaultOptions();
     }
     $this->data['meta_http'] = array('Content-Type' => 'text/html; charset=UTF-8');
     $jses = array($this->resource('js/jquery.min.js'));
     $jses = array_merge($jses, $this->getJses());
     $extraHead = '';
     if (isset($this->extraHead)) {
         $extraHead = $this->extraHead;
     }
     $extraHead .= Helper_Renderer::renderAjaxInfo($this);
     return $this->htmlCommon($this->getBodyContent($middle, $options) . $this->xmlJses($jses), $extraHead, $options);
 }