我想在我的必需输入字段之前的标签中添加一个CSS类。我可以通过JavaScript实现,但我想在CakePHP中完成。
是否有一些选项可以告诉CakePHP自动执行此操作?
答案 0 :(得分:6)
对于一个 session_id("blog");
session_start();
session_destroy();
,您只需执行此操作:
input
如果您需要将其添加到所有必需输入中,您可以创建自己的$this->Form->input('myfield', [
'label' => [
'text' => 'My Field',
'class' => 'my-label-class'
]
]);
:
FormHelper
然后在你的控制器中:
App::import('Helper', 'Form') ;
class MyFormHelper extends FormHelper {
protected function _inputLabel($fieldName, $label, $options) {
// Extract the required option from the $options array.
$required = $this->_extractOption('required', $options, false)
|| $this->_introspectModel($this->model(), 'validates', $fieldName);
// If the input is required, first force the array version for $label,
// then add the custom class.
if ($required) {
if (!is_array($label)) {
$label = array('text' => $label) ;
}
$label = $this->addClass($label, 'my-label-class') ;
}
// Then simply call the parent function.
return parent::_inputLabel($fieldName, $label, $options) ;
}
}
有关FormHelper.php的信息,请参阅_introspectModel
,基本上是:
public $helpers = array(
'Form' => array('className' => 'MyForm')
);
如果$this->_introspectModel ($model, 'validates', $fieldName)
是true
数组中的必填字段, ...将返回$fieldName
。