1 | <?php |
||
12 | class tiles extends base_view |
||
13 | { |
||
14 | /** @var \phpbb\request\request_interface */ |
||
15 | protected $request; |
||
16 | |||
17 | /** |
||
18 | * Constructor |
||
19 | * |
||
20 | * @param \phpbb\event\dispatcher_interface $phpbb_dispatcher Event dispatcher object |
||
21 | * @param \phpbb\language\language $language Language Object |
||
22 | * @param \phpbb\pagination $pagination Pagination object |
||
23 | * @param \phpbb\template\template $template Template object |
||
24 | * @param \blitze\content\services\fields $fields Content fields object |
||
25 | * @param \blitze\sitemaker\services\forum\data $forum Forum Data object |
||
26 | * @param \blitze\content\services\helper $helper Content helper object |
||
27 | * @param \blitze\content\services\quickmod $quickmod Quick moderator tools |
||
28 | * @param string $phpbb_root_path Path to the phpbb includes directory. |
||
29 | * @param string $php_ext php file extension |
||
30 | * @param \phpbb\request\request_interface $request Request object |
||
31 | */ |
||
32 | public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, $phpbb_root_path, $php_ext, \phpbb\request\request_interface $request) |
||
38 | |||
39 | /** |
||
40 | * @inheritdoc |
||
41 | */ |
||
42 | public function get_name() |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function get_langname() |
||
54 | |||
55 | /** |
||
56 | * @inheritdoc |
||
57 | */ |
||
58 | public function get_index_template() |
||
62 | |||
63 | /** |
||
64 | * @inheritdoc |
||
65 | */ |
||
66 | public function render_index(\blitze\content\model\entity\type $entity, $page, $filter_type, $filter_value) |
||
75 | } |
||
76 |