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


PHP Helper::__call方法代码示例

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


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

示例1: __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

示例2: __call

 /**
  * {@inheritdoc}
  *
  * Add default input class to inputs generated using the
  * magic __call method
  *
  * @param string $method Method name / input type to make.
  * @param array $params Parameters for the method call
  * @return string Formatted input method.
  * @throws \Cake\Core\Exception\Exception When there are no params for the method call.
  */
 public function __call($method, $params)
 {
     if (empty($params)) {
         throw new Error\Exception(sprintf('Missing field name for FormHelper::%s', $method));
     }
     $class = ['class' => $this->config('input_class')];
     if (isset($params[1])) {
         $params[1] += $class;
     } else {
         $params[1] = $class;
     }
     return parent::__call($method, $params);
 }
开发者ID:edukondaluetg,项目名称:cakemanager-adminTheme,代码行数:24,代码来源:FormHelper.php

示例3: __call

 public function __call($tag, $args)
 {
     if (strpos($tag, 'set') !== 0) {
         return parent::__call($tag, $args);
     }
     $tag = strtolower(substr($tag, 3));
     switch ($tag) {
         case 'name':
         case 'title':
         case 'description':
         case 'type':
             if (count($args) < 2) {
                 $args[] = 'og';
             }
             list($value, $namespace) = $args;
             return $this->addTag($namespace, $tag, $value);
         case 'image':
         case 'video':
             if (count($args) < 2) {
                 $args[] = [];
             }
             if (count($args) < 3) {
                 $args[] = 'og';
             }
             list($value, $options, $namespace) = $args;
             return $this->addTag($namespace, $tag, $value, $options);
         default:
             return parent::__call($tag, $args);
     }
 }
开发者ID:antevertonlima,项目名称:social-meta,代码行数:30,代码来源:OpenGraphHelper.php

示例4: __call

 /**
  * Handles dynamic template cloning
  * 
  * You can get template clones by calling 
  * ->makePhpBlock($source) where the template 
  * name is 'PhpBlock'
  * 
  * @param string $method
  * @param array $params
  * @return mixed
  */
 public function __call($method, $params = NULL)
 {
     $match = preg_split('/make/', $method);
     if (count($match) === 2 && $match[0] === '') {
         return $this->makeNamed($match[1], $params);
     }
     parent::__call($method, $params);
 }
开发者ID:OrigamiStructures,项目名称:Geshi,代码行数:19,代码来源:GeshiHelper.php


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