1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/server/vars-store.php

30 lines
438 B
PHP
Raw Normal View History

2014-03-12 14:52:47 +01:00
<?php
/*
Jappix - An open social platform
These are the store configuration variables
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
*/
// Someone is trying to hack us?
if(!defined('JAPPIX_BASE')) {
exit;
}
// Define the initial music form values
$music_title = '';
$music_artist = '';
$music_album = '';
// Current store folders
$share_folder = 'share';
$music_folder = 'music';
?>