Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | class blog extends base_view |
||
13 | { |
||
14 | /** |
||
15 | * @inheritdoc |
||
16 | */ |
||
17 | public function get_name() |
||
18 | { |
||
19 | return 'blog'; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | */ |
||
25 | public function get_langname() |
||
26 | { |
||
27 | return 'CONTENT_DISPLAY_BLOG'; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function get_index_template() |
||
36 | } |
||
37 | } |
||
38 |