blob: 3585c2c6dfdabb713ddc2d1b4e2c29e4771a9939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
class Course_Forum_RecentController extends Forum\BaseController
{
public function before_filter(&$action, &$args)
{
parent::before_filter($action, $args);
Navigation::activateItem('course/forum/topics');
}
public function index_action()
{
PageLayout::setTitle(_('Neueste Beiträge'));
$this->render_vue_app(
Studip\VueApp::create('forum/recent/Index')
->withProps([
'last_visit' => Request::int('last_visit')
])
);
}
}
|