Initializes values configured in the constructor.

Returns

void

Source

						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);
	}