mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 07:12:55 +00:00
17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
<?php
|
|
|
|
// Change this.
|
|
define('BASE_URL', 'http://yoursite.tld/media');
|
|
|
|
// What file extensions do you want to look for?
|
|
// Files must be tagged and cannot have spaces in the name.
|
|
$validExtensions = array('mp3', 'ogg');
|
|
|
|
// Names of your playlists, without the .PHP at the end.
|
|
// See playlists/example.php for an example.
|
|
// Must correspond with your jukebox's playlists list.
|
|
$playlists = array(
|
|
'bar', // Bar-specific shit.
|
|
'jazz',
|
|
'rock',
|
|
); |