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/php/get-store.php
titoko titoko 96663cd7da add source
2013-11-27 12:56:15 +01:00

37 lines
768 B
PHP
Executable file

<?php
/*
Jappix - An open social platform
This is the store configuration GET handler (manager)
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
Last revision: 26/08/11
*/
// Someone is trying to hack us?
if(!defined('JAPPIX_BASE'))
exit;
// Purge requested
if(isset($_GET['p']) && preg_match('/^((everything)|(cache)|(logs)|(send)|(updates))$/', $_GET['p'])) {
purgeFolder($_GET['p']);
?>
<p class="info smallspace success"><?php _e("The storage folder you wanted to clean is now empty!"); ?></p>
<?php }
// Folder view?
if(isset($_GET['b']) && isset($_GET['s'])) {
if($_GET['b'] == 'share')
$share_folder = urldecode($_GET['s']);
else if($_GET['b'] == 'music')
$music_folder = urldecode($_GET['s']);
}
?>