Section.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016 Arthur Schiwon <blizzz@arthur-schiwon.de>
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OCA\Theming\Settings;
  25. use OCP\IL10N;
  26. use OCP\IURLGenerator;
  27. use OCP\Settings\IIconSection;
  28. class Section implements IIconSection {
  29. /** @var IL10N */
  30. private $l;
  31. /** @var IURLGenerator */
  32. private $url;
  33. /**
  34. * @param IURLGenerator $url
  35. * @param IL10N $l
  36. */
  37. public function __construct(IURLGenerator $url, IL10N $l) {
  38. $this->url = $url;
  39. $this->l = $l;
  40. }
  41. /**
  42. * returns the ID of the section. It is supposed to be a lower case string,
  43. * e.g. 'ldap'
  44. *
  45. * @returns string
  46. */
  47. public function getID() {
  48. return 'theming';
  49. }
  50. /**
  51. * returns the translated name as it should be displayed, e.g. 'LDAP / AD
  52. * integration'. Use the L10N service to translate it.
  53. *
  54. * @return string
  55. */
  56. public function getName() {
  57. return $this->l->t('Theming');
  58. }
  59. /**
  60. * @return int whether the form should be rather on the top or bottom of
  61. * the settings navigation. The sections are arranged in ascending order of
  62. * the priority values. It is required to return a value between 0 and 99.
  63. *
  64. * E.g.: 70
  65. */
  66. public function getPriority() {
  67. return 30;
  68. }
  69. /**
  70. * {@inheritdoc}
  71. */
  72. public function getIcon() {
  73. return $this->url->imagePath('theming', 'app-dark.svg');
  74. }
  75. }