1 | <?php |
||
12 | class author_info implements block_interface |
||
13 | { |
||
14 | /** @var\phpbb\language\language */ |
||
15 | protected $language; |
||
16 | |||
17 | /** @var \phpbb\template\template */ |
||
18 | protected $template; |
||
19 | |||
20 | /** @var \blitze\sitemaker\services\forum\data */ |
||
21 | protected $forum; |
||
22 | |||
23 | /* @var \blitze\content\services\helper */ |
||
24 | protected $helper; |
||
25 | |||
26 | /** |
||
27 | * Constructor |
||
28 | * |
||
29 | * @param \phpbb\language\language $language Language Object |
||
30 | * @param \phpbb\template\template $template Template object |
||
31 | * @param \blitze\sitemaker\services\forum\data $forum Forum Data object |
||
32 | * @param \blitze\content\services\helper $helper Content helper object |
||
33 | */ |
||
34 | public function __construct(\phpbb\language\language $language, \phpbb\template\template $template, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper) |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function get_name() |
||
49 | |||
50 | /** |
||
51 | * @inheritdoc |
||
52 | */ |
||
53 | public function get_langname() |
||
57 | |||
58 | /** |
||
59 | * @param \blitze\content\model\entity\type $entity |
||
60 | * @param array $topic_data |
||
61 | * @param array $post_data |
||
62 | * @param array $user_cache |
||
63 | * @return void |
||
64 | */ |
||
65 | public function show_block(\blitze\content\model\entity\type $entity, array $topic_data, array $post_data, array $user_cache) |
||
84 | } |
||
85 |