Extends
lithium\core\Object
Initializes values configured in the constructor.
Returns
voidSource
protected function _init() {
parent::_init();
foreach ($this->_fields as $key => $val) {
if (is_int($key)) {
unset($this->_fields[$key]);
$this->_fields[$val] = $val;
}
}
$this->_model = Libraries::locate('models', $this->_model);
}