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'),
|
|
|
|
|
|
|
|
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-24 11:04:36 -04:00
|
|
|
array('title' => 'Radio MP3 Playlist',
|
|
|
|
'name' => 'radiomp3playlist',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
|
|
|
array('title' => 'Radio OGG Playlist',
|
|
|
|
'name' => 'radiooggplaylist',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
|
|
|
array('title' => 'Radio MP3 Source',
|
|
|
|
'name' => 'radiomp3source',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
|
|
|
|
array('title' => 'Radio OGG Source',
|
|
|
|
'name' => 'radiooggsource',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => ''),
|
|
|
|
),
|
2014-09-28 15:43:15 -04:00
|
|
|
'build_function' => 'radio_build');
|
2016-10-01 12:15:34 -04:00
|
|
|
?>
|