1 | <?php |
||
30 | class Section implements IIconSection { |
||
31 | /** @var IL10N */ |
||
32 | private $l; |
||
33 | /** @var IURLGenerator */ |
||
34 | private $url; |
||
35 | |||
36 | /** |
||
37 | * @param IL10N $l |
||
38 | * @param IURLGenerator $url |
||
39 | */ |
||
40 | public function __construct(IL10N $l, IURLGenerator $url) { |
||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function getID() { |
||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public function getName() { |
||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function getPriority() { |
||
62 | |||
63 | /** |
||
64 | * {@inheritdoc} |
||
65 | */ |
||
66 | public function getIcon() { |
||
69 | } |
||
70 |