diff options
Diffstat (limited to 'mod/appman.php')
-rw-r--r-- | mod/appman.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mod/appman.php b/mod/appman.php new file mode 100644 index 000000000..48389a637 --- /dev/null +++ b/mod/appman.php @@ -0,0 +1,26 @@ +<?php /** @file */ + +require_once('include/apps.php'); + +function appman_post(&$a) { + + if(! local_user()) + return; + + $papp = app_decode($_POST['papp']); + + if(! is_array($papp)) { + notice( t('Malformed app.') . EOL); + return; + } + + if($_POST['install']) { + app_install(local_user(),$papp); + } + + if($_POST['delete']) { + app_destroy(local_user(),$papp); + } + + +}
\ No newline at end of file |