| 1234567891011121314151617181920212223242526272829 |
- <?php
- trait MiscHomepageItem
- {
- public function miscSettingsArray($infoOnly = false)
- {
- $homepageInformation = [
- 'name' => 'Misc',
- 'enabled' => true,
- 'image' => 'plugins/images/organizr/logo-no-border.png',
- 'category' => 'Custom',
- 'settingsArray' => __FUNCTION__
- ];
- if ($infoOnly) {
- return $homepageInformation;
- }
- $homepageSettings = [
- 'debug' => true,
- 'settings' => [
- 'YouTube' => [
- $this->settingsOption('token', 'youtubeAPI', ['label' => 'Youtube API Key', 'help' => 'Please make sure to input this API key as the organizr one gets limited']),
- $this->settingsOption('html', null, ['override' => 6, 'label' => 'Instructions', 'html' => '<a href="https://www.slickremix.com/docs/get-api-key-for-youtube/" target="_blank">Click here for instructions</a>']),
- ]
- ]
- ];
- return array_merge($homepageInformation, $homepageSettings);
- }
-
- }
|