Updates to Radio theme / extension in order to have MP3, OGG playlists and Audio sources as configurable.

This commit is contained in:
Benjamin Southall 2017-04-25 00:04:36 +09:00
parent 1e13d730b4
commit 4139277cff
2 changed files with 32 additions and 14 deletions

View file

@ -22,7 +22,27 @@ $theme = array(
array('title' => 'Radio Status URL',
'name' => 'radiostatus',
'type' => 'text',
'default' => '/radio_assets/status.xsl')),
'default' => '/radio_assets/status.xsl'),
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' => ''),
),
'build_function' => 'radio_build');
?>