2014-09-28 15:43:15 -04:00
|
|
|
<?php
|
|
|
|
$theme = array(
|
|
|
|
'name' => 'Radio',
|
|
|
|
'description' => 'Display a link to the lainchan radio',
|
|
|
|
'version' => 'v1',
|
|
|
|
|
|
|
|
'config' => array(
|
|
|
|
array('title' => 'Page title',
|
|
|
|
'name' => 'title',
|
|
|
|
'type' => 'text'),
|
|
|
|
|
|
|
|
array('title' => 'Slogan',
|
|
|
|
'name' => 'subtitle',
|
|
|
|
'type' => 'text',
|
|
|
|
'comment' => '(optional)'),
|
|
|
|
|
|
|
|
array('title' => 'File',
|
|
|
|
'name' => 'file',
|
|
|
|
'type' => 'text',
|
2016-10-01 12:15:34 -04:00
|
|
|
'default' => 'radio.html'),
|
|
|
|
|
2017-04-27 12:14:58 -04:00
|
|
|
array('title' => 'HTTP Prefix',
|
|
|
|
'name' => 'httpprefix',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
2016-10-01 12:15:34 -04:00
|
|
|
array('title' => 'Radio Status URL',
|
|
|
|
'name' => 'radiostatus',
|
|
|
|
'type' => 'text',
|
2017-04-24 11:04:36 -04:00
|
|
|
'default' => '/radio_assets/status.xsl'),
|
2014-09-28 15:43:15 -04:00
|
|
|
|
2017-04-27 12:14:58 -04:00
|
|
|
array('title' => 'Radio Prefix',
|
|
|
|
'name' => 'radioprefix',
|
2017-04-24 11:04:36 -04:00
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
2017-04-27 12:14:58 -04:00
|
|
|
array('title' => 'Filelist Prefix',
|
|
|
|
'name' => 'filelistprefix',
|
2017-04-24 11:04:36 -04:00
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
2017-04-27 12:14:58 -04:00
|
|
|
array('title' => 'Channels',
|
|
|
|
'name' => 'channels',
|
2017-04-24 11:04:36 -04:00
|
|
|
'type' => 'text',
|
2017-04-27 12:14:58 -04:00
|
|
|
'default' => 'everything cyberia swing'),
|
|
|
|
|
|
|
|
array('title' => 'Default Channel',
|
|
|
|
'name' => 'defaultchannel',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => 'everything'),
|
|
|
|
|
|
|
|
array('title' => 'formats',
|
|
|
|
'name' => 'formats',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => 'mp3 ogg'),
|
2017-04-24 11:04:36 -04:00
|
|
|
),
|
2014-09-28 15:43:15 -04:00
|
|
|
'build_function' => 'radio_build');
|
2016-10-01 12:15:34 -04:00
|
|
|
?>
|