| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- trait MiscHomepageItem
- {
- public function miscSettingsArray()
- {
- return array(
- 'name' => 'Misc',
- 'enabled' => true,
- 'image' => 'plugins/images/organizr/logo-no-border.png',
- 'category' => 'Custom',
- '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>'
- ),
- )
- )
- );
- }
-
- }
|