本文整理汇总了PHP中Zend_View_Interface::headScript方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_View_Interface::headScript方法的具体用法?PHP Zend_View_Interface::headScript怎么用?PHP Zend_View_Interface::headScript使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_View_Interface
的用法示例。
在下文中一共展示了Zend_View_Interface::headScript方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}