Portions created by the Initial Developer are Copyright (C) 2008-2012 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; if (if_group("superadmin")) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $app_uuid = check_str($_REQUEST["id"]); } else { $action = "add"; } //get http post variables and set them to php variables if (count($_POST)>0) { $app_enabled = check_str($_POST["app_enabled"]); } if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { $msg = ''; if ($action == "update") { $app_uuid = check_str($_POST["app_uuid"]); } //check for all required data //if (strlen($app_enabled) == 0) { $msg .= "Please provide: Enabled
\n"; } if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) { require_once "resources/header.php"; require_once "resources/persist_form_var.php"; echo "
\n"; echo "
\n"; echo $msg."
"; echo "
\n"; persistformvar($_POST); echo "
\n"; require_once "resources/footer.php"; return; } //add or update the database if ($_POST["persistformvar"] != "true") { if ($action == "add") { $sql = "insert into v_apps "; $sql .= "("; $sql .= "app_uuid "; $sql .= ")"; $sql .= "values "; $sql .= "("; $sql .= "'".uuid()."' "; $sql .= ")"; //$db->exec(check_sql($sql)); unset($sql); $_SESSION["message"] = $text['message-add']; header("Location: apps.php"); return; } //if ($action == "add") if ($action == "update") { $sql = "update v_apps set "; $sql .= "app_uuid = '$app_uuid' "; $sql .= "where app_uuid = '$app_uuid'"; //$db->exec(check_sql($sql)); unset($sql); $_SESSION["message"] = $text['message-update']; header("Location: apps.php"); return; } //if ($action == "update") } //if ($_POST["persistformvar"] != "true") } //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) //show the header require_once "resources/header.php"; if ($action == "update") { $document['title'] = $text['title-app-edit']; } if ($action == "add") { $document['title'] = $text['title-app-add']; } //pre-populate the form if (count($_GET)>0 && $_POST["persistformvar"] != "true") { $app_uuid = $_GET["id"]; //get the list of installed apps from the core and mod directories $config_list = glob($_SERVER["DOCUMENT_ROOT"] . PROJECT_PATH . "/*/*/app_config.php"); $x=0; foreach ($config_list as $config_path) { include($config_path); $x++; } foreach ($apps as &$row) { if ($row["uuid"] == $app_uuid) { $name = $row['name']; $category = $row['category']; $subcategory = $row['subcategory']; $version = $row['version']; $description = $row['description']['en-us']; } } } //show the content echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo " \n"; echo " \n"; echo " \n"; echo " "; echo " \n"; echo " \n"; echo " \n"; echo " "; echo " \n"; echo " \n"; echo " \n"; echo " "; echo " \n"; echo " \n"; echo " \n"; echo " "; echo " \n"; echo " \n"; echo " \n"; echo " "; echo " \n"; echo " \n"; echo " "; echo "
".$text['header-app-edit'].""; echo " "; echo " \n"; echo "
\n"; echo $text['description-app-edit']."

\n"; echo "
\n"; echo " ".$text['label-name']."\n"; echo " \n"; echo " $name  \n"; echo "
\n"; echo " ".$text['label-category']."\n"; echo " \n"; echo " $category  \n"; echo "
\n"; echo " ".$text['label-subcategory']."\n"; echo " \n"; echo " $subcategory  \n"; echo "
\n"; echo " ".$text['label-version']."\n"; echo " \n"; echo " $version  \n"; echo "
\n"; echo " ".$text['label-description']."\n"; echo " \n"; echo " $description  \n"; echo "
\n"; if ($action == "update") { echo " \n"; } echo "
"; echo " \n"; echo "
"; echo "

"; echo "
"; //include the footer require_once "resources/footer.php"; ?>