protected function actionEdit()
{
# Building anchored model object
$aParams = $this->getParams();
$this->oModel = new \Baikal\Model\AddressBook(intval($aParams["edit"]));
# Initialize corresponding form
$this->initForm();
# Process form
if ($this->oForm->submitted()) {
$this->oForm->execute();
}
}