| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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 = array(
- 'settings' => array(
- 'YouTube' => array(
- array(
- 'type' => 'input',
- 'name' => 'youtubeAPI',
- 'label' => 'Youtube API Key',
- 'value' => $this->config['youtubeAPI'],
- 'help' => 'Please make sure to input this API key as the organizr one gets limited'
- ),
- array(
- 'type' => 'html',
- '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);
- }
-
- }
|