本文整理汇总了PHP中FormHelper::_initInputField方法的典型用法代码示例。如果您正苦于以下问题:PHP FormHelper::_initInputField方法的具体用法?PHP FormHelper::_initInputField怎么用?PHP FormHelper::_initInputField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormHelper
的用法示例。
在下文中一共展示了FormHelper::_initInputField方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _initInputField
/**
* Adds Parsley data attributes to field options if Parsley is enabled
*
* @param string $field
* @param array $options
* @return array
*/
protected function _initInputField($field, $options = array())
{
$result = parent::_initInputField($field, $options);
if (!isset($this->_processor)) {
return $result;
}
$result = $this->_processor->processInput($field, $result, $this->requestType === 'put');
return $result;
}
示例2: _initInputField
/**
* Overwrite the default method with custom enhancements
*
* @return array options
*/
protected function _initInputField($field, $options = array())
{
$normalize = true;
if (isset($options['normalize'])) {
$normalize = $options['normalize'];
unset($options['normalize']);
}
$options = parent::_initInputField($field, $options);
if (!empty($options['value']) && is_string($options['value']) && $normalize) {
$options['value'] = str_replace(array("\t", "\r\n", "\n"), ' ', $options['value']);
}
return $options;
}