本文整理汇总了PHP中FormHelper::hour方法的典型用法代码示例。如果您正苦于以下问题:PHP FormHelper::hour方法的具体用法?PHP FormHelper::hour怎么用?PHP FormHelper::hour使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormHelper
的用法示例。
在下文中一共展示了FormHelper::hour方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: hour
/**
* 「時」入力セレクトボックス作成機能を拡張する
*/
public function hour($fieldName, $format24Hours = false, $attributes = array())
{
if (isset($this->_extraFormat[$fieldName]) && in_array($this->_extraFormat[$fieldName], array('hour36', 'hour48'))) {
return $this->select($fieldName . ".hour", $this->_generateOptions($this->_extraFormat[$fieldName]), $attributes);
}
return parent::hour($fieldName, $format24Hours, $attributes);
}
示例2: hour
/**
* FormExtHelper::hour()
* Overwrite parent
*
* @param mixed $fieldName
* @param bool $format24Hours
* @param mixed $attributes
* @return void
*/
public function hour($fieldName, $format24Hours = true, $attributes = array())
{
return parent::hour($fieldName, $format24Hours, $attributes);
}