create language delete event object

This commit is contained in:
Manuel Raynaud
2013-10-23 12:15:53 +02:00
parent 24b504ad3b
commit b16edfbd1d
4 changed files with 87 additions and 9 deletions

View File

@@ -189,4 +189,11 @@ class LangController extends BaseAdminController
return $this->render('languages');
}
public function deleteAction()
{
if (null !== $response = $this->checkAuth(AdminResources::LANGUAGE, AccessManager::DELETE)) return $response;
}
}