• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP View\Helper类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Cake\View\Helper的典型用法代码示例。如果您正苦于以下问题:PHP Helper类的具体用法?PHP Helper怎么用?PHP Helper使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: __construct

 /**
  * Class Constructor
  *
  * Merges defaults with
  * - Configure::read(Meta)
  * - Helper options
  * - viewVars _meta
  * in that order (the latter trumps)
  *
  * @param array $options
  */
 public function __construct(View $View, $options = [])
 {
     parent::__construct($View, $options);
     $configureMeta = (array) Configure::read('Meta');
     if (Configure::read('Meta.robots') && is_array(Configure::read('Meta.robots'))) {
         $configureMeta['robots'] = Hash::merge($this->meta['robots'], Configure::read('Meta.robots'));
     }
     $this->meta = $configureMeta + $this->meta;
     if (!empty($options['robots']) && is_array($options['robots'])) {
         $options['robots'] = Hash::merge($this->meta['robots'], $options['robots']);
     }
     $this->meta = $options + $this->meta;
     if (!empty($this->_View->viewVars['_meta'])) {
         $viewVarsMeta = (array) $this->_View->viewVars['_meta'];
         if (!empty($viewVarsMeta['robots']) && is_array($viewVarsMeta['robots'])) {
             $viewVarsMeta['robots'] = Hash::merge($this->meta['robots'], $viewVarsMeta['robots']);
         }
         $this->meta = $viewVarsMeta + $this->meta;
     }
     if ($this->meta['charset'] === null) {
         // By default include this
         $this->meta['charset'] = true;
     }
     if ($this->meta['icon'] === null) {
         // By default include this
         $this->meta['icon'] = true;
     }
     if ($this->meta['title'] === null) {
         $this->meta['title'] = __(Inflector::humanize(Inflector::underscore($this->request->params['controller']))) . ' - ' . __(Inflector::humanize(Inflector::underscore($this->request->params['action'])));
     }
 }
开发者ID:dereuromark,项目名称:cakephp-meta,代码行数:42,代码来源:MetaHelper.php


示例2: __construct

 /**
  * Construct, optionally with GeshiHelper for code highlighting
  * 
  * @param \Cake\View\View $View
  * @param array $config
  */
 public function __construct(View $View, array $config = array())
 {
     $config += $this->defaultConfig;
     $this->helpers += (array) $config['helpers'];
     parent::__construct($View, $config);
     if (!is_object($this->Geshi)) {
         $this->Geshi = FALSE;
     }
 }
开发者ID:OrigamiStructures,项目名称:Cake3xMarkdown,代码行数:15,代码来源:CakeMarkdownHelper.php


示例3: __construct

 /**
  * Set the operating conditions for reursive operation
  * 
  * $config keys:
  *		0 - the CrudHelper object
  *		filter_property - the property name in child entities that will be tested
  *		filter_match - the property name in the parent entity that will used in testing
  *		list_type - UL or OL. Defaults to UL if not spec'd
  * 
  * The filter iterator gets configured to match some property in the iterator data set 
  * to some property value in the current <LI>s entity
  * 
  * @param View $View
  * @param array $config
  */
 public function __construct(View $View, array $config = array())
 {
     $config += ['list_type' => 'ul'];
     parent::__construct($View, $config);
     $this->Crud = $config[0];
     $this->filter_property = $config['filter_property'];
     $this->filter_match = $config['filter_match'];
     $this->list_wrapper = (object) ['open' => "<{$config['list_type']}>", 'close' => "</{$config['list_type']}>"];
     $this->depth = 0;
 }
开发者ID:OrigamiStructures,项目名称:CrudViews,代码行数:25,代码来源:ListHelper.php


示例4: __construct

 /**
  * Constructor
  *
  * ### Settings
  *
  * - `templates` Either a filename to a config containing templates.
  *   Or an array of templates to load. See Cake\View\StringTemplate for
  *   template formatting.
  *
  * ### Customizing tag sets
  *
  * Using the `templates` option you can redefine the tag HtmlHelper will use.
  *
  * @param \Cake\View\View $View The View this helper is being attached to.
  * @param array $config Configuration settings for the helper.
  */
 public function __construct(View $View, array $config = [])
 {
     parent::__construct($View, $config);
     $this->response = $this->_View->response ?: new Response();
 }
开发者ID:tgr0ss,项目名称:cakephp,代码行数:21,代码来源:HtmlHelper.php


示例5: url

 function url($url = null, $full = false)
 {
     if (!isset($url['language']) && isset($this->params['language'])) {
         $url['language'] = $this->params['language'];
     }
     return parent::url($url, $full);
 }
开发者ID:TranBinhLuan,项目名称:junzeron,代码行数:7,代码来源:AppHelper.php


示例6: __construct

 /**
  * __construct callback
  *
  * @param \Cake\View\View $View : View
  * @param array $config : Config
  * @throws Cake\Error\NotFoundException
  */
 public function __construct(\Cake\View\View $View, array $config = [])
 {
     parent::__construct($View, $config);
     if (!$this->_isSupportedFramework($fw = $this->config('assets.framework'))) {
         throw new NotFoundException(sprintf(__d('bootstrap', 'Configured JavaScript framework "{0}" is not supported. Only "{1}" are valid options.', $fw, implode(', ', $this->_authorizedJsLibs))));
     }
 }
开发者ID:cake17,项目名称:cakephp-bootstrap,代码行数:14,代码来源:BsSliderHelper.php


示例7: __call

 public function __call($tag, $args)
 {
     if (strpos($tag, 'set') !== 0) {
         return parent::__call($tag, $args);
     }
     $tag = strtolower(substr($tag, 3));
     switch ($tag) {
         case 'card':
         case 'title':
         case 'description':
         case 'data1':
         case 'label1':
         case 'data2':
         case 'label2':
             return $this->addTag($tag, array_shift($args));
         case 'site':
         case 'creator':
         case 'image':
         case 'player':
             if (count($args) < 2) {
                 $args[] = [];
             }
             list($value, $options) = $args;
             return $this->addTag($tag, $value, $options);
         default:
             return parent::__call($tag, $args);
     }
 }
开发者ID:antevertonlima,项目名称:social-meta,代码行数:28,代码来源:CardHelper.php


示例8: __construct

 /**
  * Constructor. Overridden to merge passed args with URL options.
  *
  * @param \Cake\View\View $View The View this helper is being attached to.
  * @param array $config Configuration settings for the helper.
  */
 public function __construct(View $View, array $config = [])
 {
     parent::__construct($View, $config);
     $query = $this->request->query;
     unset($query['page'], $query['limit'], $query['sort'], $query['direction']);
     $this->config('options.url', array_merge($this->request->params['pass'], ['?' => $query]));
 }
开发者ID:rlugojr,项目名称:cakephp,代码行数:13,代码来源:PaginatorHelper.php


示例9: __construct

 public function __construct(View $view, $config = [])
 {
     parent::__construct($view, $config);
     $this->_configs = $this->config();
     $this->appId = $this->_configs['app_id'];
     $this->redirectUrl = $this->_configs['redirect_url'];
     $this->appScope = $this->_configs['app_scope'];
 }
开发者ID:nanexcool,项目名称:AKKA-CakePHP-Facebook-Plugin,代码行数:8,代码来源:FacebookHelper.php


示例10: __construct

 /**
  * Constructor
  *
  * @param \Cake\View\View $View The View this helper is being attached to.
  * @param array $config Configuration settings for the helper.
  */
 public function __construct(View $View, array $config = [])
 {
     $defaults = (array) Configure::read('Highlighter');
     parent::__construct($View, $config + $defaults);
     if ($this->_config['debug'] === null) {
         $this->_config['debug'] = Configure::read('debug');
     }
 }
开发者ID:dereuromark,项目名称:cakephp-markup,代码行数:14,代码来源:HighlighterHelper.php


示例11: __construct

 /**
  * Constructor
  * @param View $View
  * @param unknown $settings
  */
 public function __construct(View $View, array $config = [])
 {
     // call parent constructor
     parent::__construct($View, $config);
     // calculate file system route
     $this->_config['css']['route'] = rtrim(WWW_ROOT, DS) . str_replace('/', DS, $this->_config['css']['path']);
     $this->_config['js']['route'] = rtrim(WWW_ROOT, DS) . str_replace('/', DS, $this->_config['js']['path']);
 }
开发者ID:unimatrix,项目名称:cakephp-utility,代码行数:13,代码来源:MinifyHelper.php


示例12: __construct

 /**
  * Constructor - finds and parses the ini file the plugin uses.
  *
  * @param \Cake\View\View $view The view instance to use.
  * @param array $settings The settings for the helper.
  * @return void
  */
 public function __construct(View $view, $settings = [])
 {
     parent::__construct($view, $settings);
     if (empty($settings['noconfig'])) {
         $configFinder = new ConfigFinder();
         $this->assetConfig($configFinder->loadAll());
     }
 }
开发者ID:clthck,项目名称:asset-compress-improved,代码行数:15,代码来源:AssetCompressHelper.php


示例13: __construct

 /**
  * Construct method.
  *
  * @param \Cake\View\View $view The view that was fired.
  * @param array $config The config passed to the class.
  */
 public function __construct(View $view, $config = [])
 {
     parent::__construct($view, $config);
     $collection = new ComponentRegistry();
     $this->Acl = new AclComponent($collection);
     $this->Authorize = new ActionsAuthorize($collection);
     $this->Authorize->config(['actionPath' => 'app/', 'userModel' => 'Users']);
 }
开发者ID:edukondaluetg,项目名称:Xeta,代码行数:14,代码来源:AclHelper.php


示例14: __construct

 public function __construct(View $View, array $config = [])
 {
     $defaults = (array) Configure::read('Format') + $this->_defaults;
     $config += $defaults;
     $config['fontIcons'] = (array) $config['fontIcons'] + $this->_defaultIcons;
     $this->template = new StringTemplate($config['templates']);
     parent::__construct($View, $config);
 }
开发者ID:ayman-alkom,项目名称:cakephp-tools,代码行数:8,代码来源:FormatHelper.php


示例15: __construct

 /**
  * Initializes Lessc and cleans less and css paths
  *
  * {@inheritdoc}
  */
 public function __construct(View $View, array $config = [])
 {
     parent::__construct($View, $config);
     // Initialize oyejorge/less.php parser
     require_once ROOT . DS . 'vendor' . DS . 'oyejorge' . DS . 'less.php' . DS . 'lib' . DS . 'Less' . DS . 'Autoloader.php';
     \Less_Autoloader::register();
     $this->css_path = WWW_ROOT . trim($this->css_path, '/');
 }
开发者ID:eddiePower,项目名称:cakephp,代码行数:13,代码来源:LessHelper.php


示例16: __construct

 /**
  * Construct method.
  *
  * @param \Cake\View\View $view The view that was fired.
  * @param array $config The config passed to the class.
  */
 public function __construct(View $view, $config = [])
 {
     parent::__construct($view, $config);
     $collection = new ComponentRegistry();
     $this->Acl = new AclComponent($collection);
     $this->Authorize = new ActionsAuthorize($collection);
     $this->Authorize->config($this->config());
 }
开发者ID:Xety,项目名称:Xeta,代码行数:14,代码来源:AclHelper.php


示例17: __construct

 /**
  * Constructor. Overridden to merge passed args with URL options.
  *
  * @param \Cake\View\View $View The View this helper is being attached to.
  * @param array $config Configuration settings for the helper.
  */
 public function __construct(\Cake\View\View $View, array $config = [])
 {
     // Amazon S3 config
     $config = $this->config();
     $credentials = new Credentials($config['S3Key'], $config['S3Secret']);
     $options = ['region' => $config['S3Region'], 'version' => $config['S3Version'], 'http' => ['verify' => false], 'signature_version' => $config['S3SignatureVersion'], 'credentials' => $credentials];
     $this->_s3Client = new S3Client($options);
     parent::__construct($View, $config + ['helpers' => ['Html']]);
 }
开发者ID:EnterpriseConsultingDeveloper,项目名称:cakephp-utils,代码行数:15,代码来源:S3FileHelper.php


示例18: __construct

 /**
  * Constructor
  *
  * @param View $View
  * @param array $config
  */
 public function __construct(View $View, array $config = array())
 {
     parent::__construct($View, $config);
     if (isset($config['dateformat'])) {
         $this->__dateformat = $config['dateformat'];
     } else {
         $this->__dateformat = Configure::read('excel.dateformat');
     }
 }
开发者ID:rashmi,项目名称:newrepo,代码行数:15,代码来源:ExcelHelper.php


示例19: __construct

 public function __construct(View $View, array $config = array())
 {
     if (isset($config['options'])) {
         if (is_string($config['options'])) {
             $this->loadConfig($config['options']);
             unset($config['options']);
         }
     }
     parent::__construct($View, $config);
 }
开发者ID:mindforce,项目名称:cakephp-editorial,代码行数:10,代码来源:EditorialHelper.php


示例20: __construct

 /**
  * Default Constructor
  *
  * ### Settings:
  *
  * - `engine` Class name to use to replace Cake\I18n\Number functionality
  *            The class needs to be placed in the `Utility` directory.
  *
  * @param \Cake\View\View $View The View this helper is being attached to.
  * @param array $config Configuration settings for the helper
  * @throws \Cake\Core\Exception\Exception When the engine class could not be found.
  */
 public function __construct(View $View, array $config = [])
 {
     parent::__construct($View, $config);
     $config = $this->_config;
     $engineClass = App::className($config['engine'], 'Utility');
     if ($engineClass) {
         $this->_engine = new $engineClass($config);
     } else {
         throw new Exception(sprintf('Class for %s could not be found', $config['engine']));
     }
 }
开发者ID:JesseDarellMoore,项目名称:CS499,代码行数:23,代码来源:NumberHelper.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP View\View类代码示例发布时间:2022-05-23
下一篇:
PHP Validation\Validator类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap