From 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 Apr 2016 20:38:38 -0700 Subject: module updates --- mod/appman.php | 102 --------------------------------------------------------- 1 file changed, 102 deletions(-) delete mode 100644 mod/appman.php (limited to 'mod/appman.php') diff --git a/mod/appman.php b/mod/appman.php deleted file mode 100644 index d8d030465..000000000 --- a/mod/appman.php +++ /dev/null @@ -1,102 +0,0 @@ - intval($_REQUEST['uid']), - 'url' => escape_tags($_REQUEST['url']), - 'guid' => escape_tags($_REQUEST['guid']), - 'author' => escape_tags($_REQUEST['author']), - 'addr' => escape_tags($_REQUEST['addr']), - 'name' => escape_tags($_REQUEST['name']), - 'desc' => escape_tags($_REQUEST['desc']), - 'photo' => escape_tags($_REQUEST['photo']), - 'version' => escape_tags($_REQUEST['version']), - 'price' => escape_tags($_REQUEST['price']), - 'sig' => escape_tags($_REQUEST['sig']) - ); - - $_REQUEST['appid'] = app_install(local_channel(),$arr); - - if(app_installed(local_channel(),$arr)) - info( t('App installed.') . EOL); - - return; - } - - - $papp = app_decode($_POST['papp']); - - if(! is_array($papp)) { - notice( t('Malformed app.') . EOL); - return; - } - - if($_POST['install']) { - app_install(local_channel(),$papp); - if(app_installed(local_channel(),$papp)) - info( t('App installed.') . EOL); - } - - if($_POST['delete']) { - app_destroy(local_channel(),$papp); - } - - if($_POST['edit']) { - return; - } - - if($_SESSION['return_url']) - goaway(z_root() . '/' . $_SESSION['return_url']); - goaway(z_root() . '/apps'); - - -} - - -function appman_content(&$a) { - - if(! local_channel()) { - notice( t('Permission denied.') . EOL); - return; - } - - $channel = App::get_channel(); - $app = null; - $embed = null; - if($_REQUEST['appid']) { - $r = q("select * from app where app_id = '%s' and app_channel = %d limit 1", - dbesc($_REQUEST['appid']), - dbesc(local_channel()) - ); - if($r) - $app = $r[0]; - $embed = array('embed', t('Embed code'), app_encode($app,true),'', 'onclick="this.select();"'); - - } - - return replace_macros(get_markup_template('app_create.tpl'), array( - - '$banner' => (($app) ? t('Edit App') : t('Create App')), - '$app' => $app, - '$guid' => (($app) ? $app['app_id'] : ''), - '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), - '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), - '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), - '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), - '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), - '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : ''), t('80 x 80 pixels - optional')), - '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), - '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), - '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), - '$embed' => $embed, - '$submit' => t('Submit') - )); - -} -- cgit v1.2.3