Version: 1.00, by Zero Tolerance
Developer Last Online: Nov 2023
Version: 3.0.3
Rating:
Released: 11-26-2004
Last Update: 11-27-2004
Installs: 286
DB Changes
No support by the author.
Yay, a radio system, an idea which i thought of in my sleep believe it or not .. maybe i work too hard.
Anyway this is a simple yet effective addition to your forum, and takes no time to install what so ever.
Features
ACP Features
vBRadio Channel Control
Add a new channel/radio station (Input: name, station stream url, for which cat)
Edit Existing Channels
Delete Exisiting Channels
vBRadio Category Control
Add a new category (Input: name)
Edit existing categories
Delete existing categories
Deletion Parameters
Choose to delete all channels within this category
Choose to move all channels within this category to another
Forum Interface Features
Radio pop's up in a window to keep while the user continues to browse
Drop down menu to select which station the user wishes to listen too
Player Controls
Volume Control
Play
Stop
Mute
Media Player Controls On/Off
Misc.
Only uses 1 SQL Query!
Included Within Download
Installation Instructions
Automatic DB/Template/Phrase Installer
A few pre-installed stations
Anyone having difficulties with listening to any of the stations please be patient. Also make sure that you have windows media player and in some cases real player installed.
Any questions/suggestions please post below, i have also put some previews up. Enjoy
- Zero Tolerance
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
function OpenRadio(){
Radio = window.open('vBRadio.php','vBRadio','directories=n o,height=320,width=650,locatio n=no,menubar=no,resizable=no,status=no,toolbar=no' )
Finally got this working in both IE and Firefox using conditionals and the way WMP is called for both of the browsers so my RADIO template is now heavily modified. Works with both WMP v9 and v10.
Big thanks to you ZT for creating this, my members love this.
Also thanks to SVTBlackLight01, paulz and others who I have forgotten to mention for ideas for doing this.
Quote:
Originally Posted by jzewatsky
Not to be a pest Zero.... Is it possible to add usergroup permissions to the radio?
@ jzewatsky
Edit vBRadio.php and find:
Code:
// ---------------------------------------------------
// End Require Globalized Settings
// ---------------------------------------------------
Under it add:
Code:
if (!is_member_of($bbuserinfo, X) and !is_member_of($bbuserinfo, Y) and !is_member_of($bbuserinfo, Z))
{
print_no_permission();
}
Where X, Y and Z are the ID numbers of the groups you want to give permission to use vBRadio.
Appears to be working...Thank you so much. If it's not too much to ask is there a conditional that I can wrap around the vbradio link in my navbar so that only certain secondary usergroups can see it?
Appears to be working...Thank you so much. If it's not too much to ask is there a conditional that I can wrap around the vbradio link in my navbar so that only certain secondary usergroups can see it?
Thanks for the help.
Your most welcome.
Use this around the link:
Code:
<if condition="$bbuserinfo['usergroupid'] == X OR $bbuserinfo['usergroupid'] == Y OR $bbuserinfo['usergroupid'] == Z"> Your Link here </if>
Where X, Y and Z are the ID numbers of the secondary usergroups you want to give permission to see vBRadio link in your navbar, that should work you will have to try to find out, but only use primary usergroups myself, but like I said should work.
It does not appear to be working for secondary usergroups. It works find for primary. Is there a change in the [usergroupid] like [secondaryusergroupid]? How do we/you know how and under what name variables are stored in the DB?