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


PHP AppHelper::_name方法代码示例

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


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

示例1: _name

/**
 * Gets the input field name for the current tag
 *
 * @param array $options
 * @param string $field
 * @param string $key
 * @return array
 */
	protected function _name($options = array(), $field = null, $key = 'name') {
		if ($this->requestType === 'get') {
			if ($options === null) {
				$options = array();
			} elseif (is_string($options)) {
				$field = $options;
				$options = 0;
			}

			if (!empty($field)) {
				$this->setEntity($field);
			}

			if (is_array($options) && isset($options[$key])) {
				return $options;
			}

			$entity = $this->entity();
			$model = $this->model();
			$name = $model === $entity[0] && isset($entity[1]) ? $entity[1] : $entity[0];
			$last = $entity[count($entity) - 1];
			if (in_array($last, $this->_fieldSuffixes)) {
				$name .= '[' . $last . ']';
			}

			if (is_array($options)) {
				$options[$key] = $name;
				return $options;
			} else {
				return $name;
			}
		}
		return parent::_name($options, $field, $key);
	}
开发者ID:hungnt88,项目名称:5stars-1,代码行数:42,代码来源:FormHelper.php

示例2: array

 /**
  * Gets the input field name for the current tag
  *
  * @param array $options
  * @param string $key
  * @return array
  * @access protected
  */
 function _name($options = array(), $field = null, $key = 'name')
 {
     if ($this->requestType == 'get') {
         if ($options === null) {
             $options = array();
         } elseif (is_string($options)) {
             $field = $options;
             $options = 0;
         }
         if (!empty($field)) {
             $this->setEntity($field);
         }
         if (is_array($options) && isset($options[$key])) {
             return $options;
         }
         $view = ClassRegistry::getObject('view');
         $name = $view->field;
         if (!empty($view->fieldSuffix)) {
             $name .= '[' . $view->fieldSuffix . ']';
         }
         if (is_array($options)) {
             $options[$key] = $name;
             return $options;
         } else {
             return $name;
         }
     }
     return parent::_name($options, $field, $key);
 }
开发者ID:johnulist,项目名称:Markab,代码行数:37,代码来源:form.php

示例3: _name

 /**
  * Gets the input field name for the current tag
  *
  * @param array $options
  * @param string $key
  * @return array
  */
 protected function _name($options = array(), $field = null, $key = 'name')
 {
     if ($this->requestType == 'get') {
         if ($options === null) {
             $options = array();
         } elseif (is_string($options)) {
             $field = $options;
             $options = 0;
         }
         if (!empty($field)) {
             $this->setEntity($field);
         }
         if (is_array($options) && isset($options[$key])) {
             return $options;
         }
         $name = !empty($this->_View->field) ? $this->_View->field : $this->_View->model;
         if (!empty($this->_View->fieldSuffix)) {
             $name .= '[' . $this->_View->fieldSuffix . ']';
         }
         if (is_array($options)) {
             $options[$key] = $name;
             return $options;
         } else {
             return $name;
         }
     }
     return parent::_name($options, $field, $key);
 }
开发者ID:robotarmy,项目名称:Phog,代码行数:35,代码来源:form.php

示例4: array

 /**
  * Gets the input field name for the current tag
  *
  * @param array $options
  * @param string $key
  * @return array
  * @access protected
  */
 function _name($options = array(), $field = null, $key = 'name')
 {
     if ($this->requestType == 'get') {
         if ($options === null) {
             $options = array();
         } elseif (is_string($options)) {
             $field = $options;
             $options = 0;
         }
         if (!empty($field)) {
             $this->setEntity($field);
         }
         if (is_array($options) && isset($options[$key])) {
             return $options;
         }
         $name = $this->field();
         if (is_array($options)) {
             $options[$key] = $name;
             return $options;
         } else {
             return $name;
         }
     }
     return parent::_name($options, $field, $key);
 }
开发者ID:enangyusup,项目名称:vbulletin-cakephp,代码行数:33,代码来源:form.php


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