1 | <?php |
||
16 | abstract class base implements \phpbb\admanagement\location\type\type_interface |
||
17 | { |
||
18 | /** |
||
19 | * User object |
||
20 | * @var \phpbb\user |
||
21 | */ |
||
22 | protected $user; |
||
23 | |||
24 | /** |
||
25 | * Construct an after_profile template location object |
||
26 | * |
||
27 | * @param \phpbb\user $user User object |
||
28 | */ |
||
29 | 32 | public function __construct(\phpbb\user $user) |
|
33 | |||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | 10 | public function get_name() |
|
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | 10 | public function get_desc() |
|
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | 1 | public function will_display() |
|
57 | } |
||
58 |