lithium\template\helper\Form::_init()
Overrides
lithium\core\Object::_init()
Object initializer. Adds a content handler for the wrap
key in the field()
method, which
converts an array of properties to an attribute string.
Returns
voidSource
protected function _init() {
parent::_init();
if ($this->_context) {
$this->_context->handlers(['wrap' => '_attributes']);
}
}