]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/vars-store.php
Merge branch '3.6-release'
[friendica-addons.git] / jappixmini / jappix / php / vars-store.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 These are the store configuration variables
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 28/12/10
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 // Define the initial music form values
21 $music_title = '';
22 $music_artist = '';
23 $music_album = '';
24
25 // Current store folders
26 $share_folder = 'share';
27 $music_folder = 'music';
28
29 ?>