| 1 | <?php |
||
| 15 | class stats extends \blitze\sitemaker\services\blocks\driver\block |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * phpBB configuration |
||
| 19 | * @var \phpbb\config\config |
||
| 20 | */ |
||
| 21 | protected $config; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * User object |
||
| 25 | * @var \phpbb\user |
||
| 26 | */ |
||
| 27 | protected $user; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor |
||
| 31 | * |
||
| 32 | * @param \phpbb\config\config $config phpBB configuration |
||
| 33 | * @param \phpbb\user $user User object |
||
| 34 | */ |
||
| 35 | 2 | public function __construct(\phpbb\config\config $config, \phpbb\user $user) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 1 | public function display(array $settings, $edit_mode = false) |
|
| 57 | } |
||
| 58 |