Our Shows
Desi Morning
' . esc_html( __( 'Show Times', 'radio-station' ) ) . '
'; // --- check if show is active and has shifts --- if ( !$active || !$shifts ) { $blocks['show_times'] .= esc_html( __( 'Not Currently Scheduled.', 'radio-station' ) ); } else { // --- get timezone and offset --- // 2.3.2: use get timezone function $timezone = radio_station_get_timezone(); if ( strstr( $timezone, 'UTC' ) ) { $offset = str_replace( 'UTC', '', $timezone ); } else { $timezone_code = radio_station_get_timezone_code( $timezone ); $datetimezone = new DateTimeZone( $timezone ); $offset = $datetimezone->getOffset( new DateTime() ); $offset = round( $offset / 60 / 60 ); if ( strstr( (string) $offset, '.' ) ) { if ( substr( $offset, - 2, 2 ) == '.5' ) { $offset = str_replace( '.5', ':30', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.75' ) { $offset = str_replace( '.75', ':45', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.25' ) { $offset = str_replace( '.25', ':15', $offset ); } } } if ( ( 0 == $offset ) || ( '' == $offset ) ) { $utc_offset = ''; } elseif ( $offset > 0 ) { $utc_offset = '+' . $offset; } else { $utc_offset = $offset; } // --- display timezone --- $blocks['show_times'] .= '' . esc_html( __( 'Timezone', 'radio-station' ) ) . ': '; if ( !isset( $timezone_code ) ) { $blocks['show_times'] .= esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset; } else { $blocks['show_times'] .= esc_html( $timezone_code ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' [' . esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset . ']'; $blocks['show_times'] .= ''; } // TODO: --- display user timezone --- // $block['show_times'] .= ... $blocks['show_times'] .= ''; $weekday = radio_station_translate_weekday( $day, true ); $blocks['show_times'] .= '' . esc_html( $weekday ) . ': '; $blocks['show_times'] .= ' | ';
foreach ( $show_times as $i => $show_time ) {
$blocks['show_times'] .= '' . $show_time . '';
// if ( $i < ( $show_times_count - 1 ) ) {
// $blocks['show_times'] .= ' '; // } } $blocks['show_times'] .= ' | ';
}
}
// --- * encore note ---
if ( $found_encore ) {
$blocks['show_times'] .= '
'; $blocks['show_times'] .= '* '; $blocks['show_times'] .= ''; $blocks['show_times'] .= esc_html( __( 'Encore Presentation', 'radio-station' ) ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' |
Why so grumpy this morning? Looks like you haven’t heard RJ Goldie’s on point bone-tickling jokes in his morning show “Desi Mornings.” Dallas, say bye-bye to MOURN-ings. Get worldwide daily news update from 7 a.m to 11 a.m in the most humorous and entertaining way you could ever possibly think of!
Bollywood Talkies
' . esc_html( __( 'Show Times', 'radio-station' ) ) . '
'; // --- check if show is active and has shifts --- if ( !$active || !$shifts ) { $blocks['show_times'] .= esc_html( __( 'Not Currently Scheduled.', 'radio-station' ) ); } else { // --- get timezone and offset --- // 2.3.2: use get timezone function $timezone = radio_station_get_timezone(); if ( strstr( $timezone, 'UTC' ) ) { $offset = str_replace( 'UTC', '', $timezone ); } else { $timezone_code = radio_station_get_timezone_code( $timezone ); $datetimezone = new DateTimeZone( $timezone ); $offset = $datetimezone->getOffset( new DateTime() ); $offset = round( $offset / 60 / 60 ); if ( strstr( (string) $offset, '.' ) ) { if ( substr( $offset, - 2, 2 ) == '.5' ) { $offset = str_replace( '.5', ':30', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.75' ) { $offset = str_replace( '.75', ':45', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.25' ) { $offset = str_replace( '.25', ':15', $offset ); } } } if ( ( 0 == $offset ) || ( '' == $offset ) ) { $utc_offset = ''; } elseif ( $offset > 0 ) { $utc_offset = '+' . $offset; } else { $utc_offset = $offset; } // --- display timezone --- $blocks['show_times'] .= '' . esc_html( __( 'Timezone', 'radio-station' ) ) . ': '; if ( !isset( $timezone_code ) ) { $blocks['show_times'] .= esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset; } else { $blocks['show_times'] .= esc_html( $timezone_code ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' [' . esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset . ']'; $blocks['show_times'] .= ''; } // TODO: --- display user timezone --- // $block['show_times'] .= ... $blocks['show_times'] .= ''; $weekday = radio_station_translate_weekday( $day, true ); $blocks['show_times'] .= '' . esc_html( $weekday ) . ': '; $blocks['show_times'] .= ' | ';
foreach ( $show_times as $i => $show_time ) {
$blocks['show_times'] .= '' . $show_time . '';
// if ( $i < ( $show_times_count - 1 ) ) {
// $blocks['show_times'] .= ' '; // } } $blocks['show_times'] .= ' | ';
}
}
// --- * encore note ---
if ( $found_encore ) {
$blocks['show_times'] .= '
'; $blocks['show_times'] .= '* '; $blocks['show_times'] .= ''; $blocks['show_times'] .= esc_html( __( 'Encore Presentation', 'radio-station' ) ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' |
Attention! Got that Bollywood keeda inside you? Bless your ears because RJ Jay is here with each and every Bollywood update be it about movie, song or actors from 11 a.m to 3 p.m.
Sunset Cafe
' . esc_html( __( 'Show Times', 'radio-station' ) ) . '
'; // --- check if show is active and has shifts --- if ( !$active || !$shifts ) { $blocks['show_times'] .= esc_html( __( 'Not Currently Scheduled.', 'radio-station' ) ); } else { // --- get timezone and offset --- // 2.3.2: use get timezone function $timezone = radio_station_get_timezone(); if ( strstr( $timezone, 'UTC' ) ) { $offset = str_replace( 'UTC', '', $timezone ); } else { $timezone_code = radio_station_get_timezone_code( $timezone ); $datetimezone = new DateTimeZone( $timezone ); $offset = $datetimezone->getOffset( new DateTime() ); $offset = round( $offset / 60 / 60 ); if ( strstr( (string) $offset, '.' ) ) { if ( substr( $offset, - 2, 2 ) == '.5' ) { $offset = str_replace( '.5', ':30', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.75' ) { $offset = str_replace( '.75', ':45', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.25' ) { $offset = str_replace( '.25', ':15', $offset ); } } } if ( ( 0 == $offset ) || ( '' == $offset ) ) { $utc_offset = ''; } elseif ( $offset > 0 ) { $utc_offset = '+' . $offset; } else { $utc_offset = $offset; } // --- display timezone --- $blocks['show_times'] .= '' . esc_html( __( 'Timezone', 'radio-station' ) ) . ': '; if ( !isset( $timezone_code ) ) { $blocks['show_times'] .= esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset; } else { $blocks['show_times'] .= esc_html( $timezone_code ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' [' . esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset . ']'; $blocks['show_times'] .= ''; } // TODO: --- display user timezone --- // $block['show_times'] .= ... $blocks['show_times'] .= ''; $weekday = radio_station_translate_weekday( $day, true ); $blocks['show_times'] .= '' . esc_html( $weekday ) . ': '; $blocks['show_times'] .= ' | ';
foreach ( $show_times as $i => $show_time ) {
$blocks['show_times'] .= '' . $show_time . '';
// if ( $i < ( $show_times_count - 1 ) ) {
// $blocks['show_times'] .= ' '; // } } $blocks['show_times'] .= ' | ';
}
}
// --- * encore note ---
if ( $found_encore ) {
$blocks['show_times'] .= '
'; $blocks['show_times'] .= '* '; $blocks['show_times'] .= ''; $blocks['show_times'] .= esc_html( __( 'Encore Presentation', 'radio-station' ) ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' |
While you were just existing the entire day, it’s time to actually live! Take a deep breath and enjoy the refreshing and soothing tunes and tales with RJ Nupur from 4 to 8 p.m. after the hectic day’s schedule has worn you out!
Tau Ki class
' . esc_html( __( 'Show Times', 'radio-station' ) ) . '
'; // --- check if show is active and has shifts --- if ( !$active || !$shifts ) { $blocks['show_times'] .= esc_html( __( 'Not Currently Scheduled.', 'radio-station' ) ); } else { // --- get timezone and offset --- // 2.3.2: use get timezone function $timezone = radio_station_get_timezone(); if ( strstr( $timezone, 'UTC' ) ) { $offset = str_replace( 'UTC', '', $timezone ); } else { $timezone_code = radio_station_get_timezone_code( $timezone ); $datetimezone = new DateTimeZone( $timezone ); $offset = $datetimezone->getOffset( new DateTime() ); $offset = round( $offset / 60 / 60 ); if ( strstr( (string) $offset, '.' ) ) { if ( substr( $offset, - 2, 2 ) == '.5' ) { $offset = str_replace( '.5', ':30', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.75' ) { $offset = str_replace( '.75', ':45', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.25' ) { $offset = str_replace( '.25', ':15', $offset ); } } } if ( ( 0 == $offset ) || ( '' == $offset ) ) { $utc_offset = ''; } elseif ( $offset > 0 ) { $utc_offset = '+' . $offset; } else { $utc_offset = $offset; } // --- display timezone --- $blocks['show_times'] .= '' . esc_html( __( 'Timezone', 'radio-station' ) ) . ': '; if ( !isset( $timezone_code ) ) { $blocks['show_times'] .= esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset; } else { $blocks['show_times'] .= esc_html( $timezone_code ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' [' . esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset . ']'; $blocks['show_times'] .= ''; } // TODO: --- display user timezone --- // $block['show_times'] .= ... $blocks['show_times'] .= ''; $weekday = radio_station_translate_weekday( $day, true ); $blocks['show_times'] .= '' . esc_html( $weekday ) . ': '; $blocks['show_times'] .= ' | ';
foreach ( $show_times as $i => $show_time ) {
$blocks['show_times'] .= '' . $show_time . '';
// if ( $i < ( $show_times_count - 1 ) ) {
// $blocks['show_times'] .= ' '; // } } $blocks['show_times'] .= ' | ';
}
}
// --- * encore note ---
if ( $found_encore ) {
$blocks['show_times'] .= '
'; $blocks['show_times'] .= '* '; $blocks['show_times'] .= ''; $blocks['show_times'] .= esc_html( __( 'Encore Presentation', 'radio-station' ) ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' |
Har week kuch nayi seekh! We all have an impatient curious student within us, don’t we? Get ready to learn from the Tau himself from 3 to 4 p.m. From informative news to the most absurd ones, Tau knows how to deliver moral learnings in the most fun way!
D-Talks
' . esc_html( __( 'Show Times', 'radio-station' ) ) . '
'; // --- check if show is active and has shifts --- if ( !$active || !$shifts ) { $blocks['show_times'] .= esc_html( __( 'Not Currently Scheduled.', 'radio-station' ) ); } else { // --- get timezone and offset --- // 2.3.2: use get timezone function $timezone = radio_station_get_timezone(); if ( strstr( $timezone, 'UTC' ) ) { $offset = str_replace( 'UTC', '', $timezone ); } else { $timezone_code = radio_station_get_timezone_code( $timezone ); $datetimezone = new DateTimeZone( $timezone ); $offset = $datetimezone->getOffset( new DateTime() ); $offset = round( $offset / 60 / 60 ); if ( strstr( (string) $offset, '.' ) ) { if ( substr( $offset, - 2, 2 ) == '.5' ) { $offset = str_replace( '.5', ':30', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.75' ) { $offset = str_replace( '.75', ':45', $offset ); } elseif ( substr( $offset, - 3, 3 ) == '.25' ) { $offset = str_replace( '.25', ':15', $offset ); } } } if ( ( 0 == $offset ) || ( '' == $offset ) ) { $utc_offset = ''; } elseif ( $offset > 0 ) { $utc_offset = '+' . $offset; } else { $utc_offset = $offset; } // --- display timezone --- $blocks['show_times'] .= '' . esc_html( __( 'Timezone', 'radio-station' ) ) . ': '; if ( !isset( $timezone_code ) ) { $blocks['show_times'] .= esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset; } else { $blocks['show_times'] .= esc_html( $timezone_code ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' [' . esc_html( __( 'UTC', 'radio-station' ) ) . $utc_offset . ']'; $blocks['show_times'] .= ''; } // TODO: --- display user timezone --- // $block['show_times'] .= ... $blocks['show_times'] .= ''; $weekday = radio_station_translate_weekday( $day, true ); $blocks['show_times'] .= '' . esc_html( $weekday ) . ': '; $blocks['show_times'] .= ' | ';
foreach ( $show_times as $i => $show_time ) {
$blocks['show_times'] .= '' . $show_time . '';
// if ( $i < ( $show_times_count - 1 ) ) {
// $blocks['show_times'] .= ' '; // } } $blocks['show_times'] .= ' | ';
}
}
// --- * encore note ---
if ( $found_encore ) {
$blocks['show_times'] .= '
'; $blocks['show_times'] .= '* '; $blocks['show_times'] .= ''; $blocks['show_times'] .= esc_html( __( 'Encore Presentation', 'radio-station' ) ); $blocks['show_times'] .= ''; $blocks['show_times'] .= ' |
Ever happened that you felt like starting your life all over again? Well, this show is for you then. Have a complete cleanse of the entire day with Drashti. Detox yourselves (or should we say D-talks) with RJ Drashti from 8 p.m. to 12 a.m.