Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created May 15, 2017 19:30
Show Gist options
  • Save omarkdev/c1d1cb67eda4350bbb6571fe118beb3f to your computer and use it in GitHub Desktop.
Save omarkdev/c1d1cb67eda4350bbb6571fe118beb3f to your computer and use it in GitHub Desktop.
<?php
protected function indexAction()
{
if ($this->security->isGranted('ADMIN')) {
$view = 'admin/index.html.twig';
} else {
$view = 'home/access_denied.html.twig';
}
return $this->render($view);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment