当前位置: 首页>>代码示例>>PHP>>正文


PHP Assets::styles方法代码示例

本文整理汇总了PHP中Assets::styles方法的典型用法代码示例。如果您正苦于以下问题:PHP Assets::styles方法的具体用法?PHP Assets::styles怎么用?PHP Assets::styles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Assets的用法示例。


在下文中一共展示了Assets::styles方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _set_namespace

 /**
  * @param $namespace
  * @return $this
  */
 private function _set_namespace($namespace)
 {
     $this->_namespaces_list = isset($this->_namespaces_list) ? $this->_namespaces_list : [];
     if (empty($namespace)) {
         $namespace = self::$namespace = 'app';
     }
     if (array_key_exists($namespace, $this->_namespaces_list)) {
         self::$scripts = $this->_namespaces_list[$namespace][self::SCRIPTS];
         self::$styles = $this->_namespaces_list[$namespace][self::STYLES];
     } else {
         $this->_namespaces_list[$namespace] = [self::STYLES => [], self::SCRIPTS => []];
         self::$priority[$namespace] = [self::STYLES => 0, self::SCRIPTS => 0];
         self::$scripts = [];
         self::$styles = [];
     }
     return $this;
 }
开发者ID:eok8177,项目名称:shopCMS,代码行数:21,代码来源:Assets.php

示例2:

<?php

echo Assets::styles('global');
?>

<?php 
echo Assets::scripts('global');
开发者ID:arrounded,项目名称:assets,代码行数:7,代码来源:baz.php

示例3: add_css

 /**
  * Adds a file to be the CSS queue to be rendered out.
  *
  * @access public
  * @static
  *
  * @param mixed  $style The style(s) to be added
  * @param string $media The type of media the stylesheet styles.
  * @param bool	 $prepend If true, the file(s) will be added to the beginning of the style array
  *
  * @return void
  */
 public static function add_css($style = null, $media = 'screen', $prepend = FALSE)
 {
     if (empty($style)) {
         return;
     }
     //Debugging issues with media being set to 1 on module_js
     if ($media == '1') {
         $media = 'screen';
     }
     $style_array = array();
     // Add a string
     if (is_string($style)) {
         $style_array[] = array('file' => $style, 'media' => $media);
     } else {
         if (is_array($style) && count($style)) {
             foreach ($style as $s) {
                 $style_array[] = array('file' => $s, 'media' => $media);
             }
         }
     }
     if ($prepend) {
         self::$styles = array_merge($style_array, self::$styles);
     } else {
         self::$styles = array_merge(self::$styles, $style_array);
     }
 }
开发者ID:brkrishna,项目名称:freelance,代码行数:38,代码来源:assets.php


注:本文中的Assets::styles方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。