misc.php 768 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. trait MiscHomepageItem
  3. {
  4. public function miscSettingsArray()
  5. {
  6. return array(
  7. 'name' => 'Misc',
  8. 'enabled' => true,
  9. 'image' => 'plugins/images/organizr/logo-no-border.png',
  10. 'category' => 'Custom',
  11. 'settings' => array(
  12. 'YouTube' => array(
  13. array(
  14. 'type' => 'input',
  15. 'name' => 'youtubeAPI',
  16. 'label' => 'Youtube API Key',
  17. 'value' => $this->config['youtubeAPI'],
  18. 'help' => 'Please make sure to input this API key as the organizr one gets limited'
  19. ),
  20. array(
  21. 'type' => 'html',
  22. 'override' => 6,
  23. 'label' => 'Instructions',
  24. 'html' => '<a href="https://www.slickremix.com/docs/get-api-key-for-youtube/" target="_blank">Click here for instructions</a>'
  25. ),
  26. )
  27. )
  28. );
  29. }
  30. }