- Edit country view creation

- Delete and edit modalbox creation
- Countries routes management
This commit is contained in:
mespeche
2013-09-16 12:55:34 +02:00
parent 76dc9609b6
commit 5e8749e054
8 changed files with 355 additions and 10 deletions

View File

@@ -36,4 +36,17 @@ class CountryController extends BaseAdminController
return $this->render("countries", array("display_country" => 20));
}
/**
* update country action
*
* @param $country_id
* @return mixed|\Symfony\Component\HttpFoundation\Response
*/
public function updateAction($country_id)
{
return $this->render("country-edit", array(
"country_id" => $country_id
));
}
}