Grid of Videos
Design and Skin Customization
I seen grid for the video module today. Didn't check the others.
// Player Type
$_ptype = array(
'blue_monday' => 'Blue Monday Player',
'gray_overlay_player' => 'Gray Overlay Player',
'player_dark' => 'Midnight Player',
'black_overlay_player' => 'Black Overlay Player',
);
$_tmp = array(
'name' => 'player_type',
'label' => 'Player Type',
'help' => 'Select the type of player you want to use on your site.Original = Blue Monday New = New Light Player',
'type' => 'select',
'options' => $_ptype,
'default' => 'black_overlay_player',
'order' => 49,
'section' => 'Radio And TV'
);
jrCore_register_setting('jrNova', $_tmp);
<script type="text/javascript">
$(document).ready(function(){
jrLoad('#sm',core_system_url +'/index_artists');
jrLoad('#top_artists',core_system_url +'/top_artists');
jrLoad('#top_songs',core_system_url +'/top_songs');
jrSetActive('#default');
});
</script>
{* FEATURED TABS *}
<div class="row">
<div class="col12 last">
<div class="menu_tab">
<div id="default" class="p_choice fartist" onclick="jrLoad('#sm','{$jamroom_url}/index_artists');jrSetActive('#default');">{jrCore_lang skin=$_conf.jrCore_active_skin id="50" default="featured"} {jrCore_lang skin=$_conf.jrCore_active_skin id="52" default="artists"}</div>
<div id="s_song" class="p_choice fsong" onclick="jrLoad('#sm','{$jamroom_url}/index_songs');jrSetActive('#s_song');">{jrCore_lang skin=$_conf.jrCore_active_skin id="50" default="featured"} {jrCore_lang skin=$_conf.jrCore_active_skin id="51" default="songs"}</div>
<div id="s_video" class="p_choice fvideo" onclick="jrLoad('#sm','{$jamroom_url}/index_videos');jrSetActive('#s_video');">{jrCore_lang skin=$_conf.jrCore_active_skin id="50" default="featured"} {jrCore_lang skin=$_conf.jrCore_active_skin id="15" default="videos"}</div>
<div class="clear"></div>
</div>
<div class="finner mb8">
<div id="sm"></div>
</div>
</div>
</div>
jrCore_register_module_feature('jrCore', 'css', 'indiegospel', 'core_tabs.css');
// Featured Artist ID's
$_tmp = array(
'name' => 'featured_artist_ids',
'type' => 'text',
'default' => '',
'validate' => 'not_empty',
'label' => 'Featured Artist ID\'s',
'help' => 'Enter the artist ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Artist tab will show 4 random artists.</span>',
'section' => 'Home Page',
'order' => 64
);
jrCore_register_setting('indiegospel',$_tmp);
// Featured Song ID's
$_tmp = array(
'name' => 'featured_song_ids',
'type' => 'text',
'default' => '',
'validate' => 'not_empty',
'label' => 'Featured Song ID\'s',
'help' => 'Enter the song ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Song tab will show 4 random songs.</span>',
'section' => 'Home Page',
'order' => 65
);
jrCore_register_setting('indiegospel',$_tmp);
// Featured Video ID's
$_tmp = array(
'name' => 'featured_video_ids',
'type' => 'text',
'default' => '',
'validate' => 'not_empty',
'label' => 'Featured Video ID\'s',
'help' => 'Enter the video ID\'s you want to show in featured tab section.<br><br><span class="form_help_small">Note: Enter up to 4 ID\'s separated by a comma. ie. 1,2,3,4. If left blank the Featured Video tab will show 4 random videos.</span>',
'section' => 'Home Page',
'order' => 66
);
jrCore_register_setting('indiegospel',$_tmp);
$lang[50] = 'Featured';
$lang[51] = 'Songs';
$lang[52] = 'Artists';