public function setAllowModifications($option = true
) { $this->_allowModifications =
(bool) $option;
if ($this->_data !== null
) { foreach ($this->_data
as $value) { if ($value instanceof Enlight_Config
) { $value->
setAllowModifications($option);
} } } return $this;
} /**
* Resets the dirty fields to an empty list.
*
* @return Enlight_Config
*/