當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_View_Interface::headLink方法代碼示例

本文整理匯總了PHP中Zend_View_Interface::headLink方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_View_Interface::headLink方法的具體用法?PHP Zend_View_Interface::headLink怎麽用?PHP Zend_View_Interface::headLink使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_View_Interface的用法示例。


在下文中一共展示了Zend_View_Interface::headLink方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: headStatic

 /**
  * Produces the HTML header by adding the required JS and CSS script to the view. 
  * These are the files necessary for Daiquiri to work as defined in $_files and any
  * additional file given in $inputfiles. If minify is enabled in the configuration 
  * file, the JS and CSS files are minified.
  * @param  array  $customFiles   additional static files
  * @param  array  $overrideFiles files that override the default files
  */
 public function headStatic(array $customFiles, array $overrideFiles = array())
 {
     $hl = $this->view->headLink();
     $hs = $this->view->headScript();
     $js = array();
     $css = array();
     if (Daiquiri_Config::getInstance()->core->minify->enabled == true) {
         $js[] = 'min/js/daiquiri.js';
         $css[] = 'min/css/daiquiri.css';
     } else {
         foreach (Daiquiri_View_Helper_HeadStatic::$files as $key => $file) {
             if (array_key_exists($key, $overrideFiles)) {
                 $file = $overrideFiles[$key];
             }
             $ext = pathinfo($file, PATHINFO_EXTENSION);
             if ($ext === 'js') {
                 $js[] = $file;
             } else {
                 if ($ext === 'css') {
                     $css[] = $file;
                 }
             }
         }
     }
     foreach ($customFiles as $file) {
         $ext = pathinfo($file, PATHINFO_EXTENSION);
         if ($ext === 'js') {
             $js[] = $file;
         } else {
             if ($ext === 'css') {
                 $css[] = $file;
             }
         }
     }
     // prepend files in reverse order
     foreach (array_reverse($css) as $file) {
         $hl->prependStylesheet($this->view->baseUrl($file));
     }
     foreach (array_reverse($js) as $file) {
         $hs->prependFile($this->view->baseUrl($file));
     }
     // echo the view helpers
     echo PHP_EOL . PHP_EOL . $hl . PHP_EOL . PHP_EOL . $hs . PHP_EOL . PHP_EOL;
 }
開發者ID:vrtulka23,項目名稱:daiquiri,代碼行數:52,代碼來源:HeadStatic.php

示例2: loadDefaultDesign

 /**
  *
  */
 public function loadDefaultDesign()
 {
     $mdlDesign = new Model_Design();
     $design = $mdlDesign->getDefaultDesign();
     $mdlDesign->setDesign($design->id);
     //todo: this is duplicated in the builder
     //the design model returns the stylesheets organized by skin
     $skins = $mdlDesign->getStylesheets();
     if (is_array($skins)) {
         foreach ($skins as $skin => $styles) {
             if (is_array($styles)) {
                 foreach ($styles as $style) {
                     $this->view->headLink()->appendStylesheet('/skins/' . $skin . '/styles/' . $style);
                 }
             }
         }
     }
     $this->view->layout = $mdlDesign->getLayout();
 }
開發者ID:ngukho,項目名稱:ducbui-cms,代碼行數:22,代碼來源:LoadDefaultDesign.php


注:本文中的Zend_View_Interface::headLink方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。