2013-10-05 19:24:08 +02:00
|
|
|
<?php
|
2013-10-05 21:24:20 +02:00
|
|
|
class CommentController
|
2013-10-05 19:24:08 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @route /comments
|
|
|
|
*/
|
|
|
|
public function listAction()
|
|
|
|
{
|
2013-10-05 22:52:55 +02:00
|
|
|
$this->context->activeSection = 'comments';
|
2013-10-05 21:22:28 +02:00
|
|
|
$this->context->subTitle = 'comments';
|
2013-10-05 19:24:08 +02:00
|
|
|
throw new Exception('Not implemented');
|
|
|
|
}
|
|
|
|
}
|