Page titles filled in

This commit is contained in:
Marcin Kurczewski
2013-10-05 21:22:28 +02:00
parent 377bdcf7c9
commit 046968b815
10 changed files with 24 additions and 4 deletions

View File

@ -6,6 +6,7 @@ class UserController extends AbstractController
*/
public function listAction()
{
$this->context->subTitle = 'users';
throw new Exception('Not implemented');
}
@ -15,6 +16,7 @@ class UserController extends AbstractController
*/
public function showAction($name)
{
$this->context->subTitle = $name;
throw new Exception('Not implemented');
}
}