Portions created by the Initial Developer are Copyright (C) 2008-2020 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (permission_exists('module_add') || permission_exists('module_edit')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //determin the action add or update if (is_uuid($_REQUEST["id"])) { $action = "update"; $module_uuid = $_REQUEST["id"]; } else { $action = "add"; } //set the http post variables to php variables if (count($_POST)>0) { $module_label = $_POST["module_label"]; $module_name = $_POST["module_name"]; $module_description = $_POST["module_description"]; $module_category = $_POST["module_category"]; $module_order = $_POST["module_order"]; $module_enabled = $_POST["module_enabled"]; $module_default_enabled = $_POST["module_default_enabled"]; } //process the data if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { //get the uuid if ($action == "update") { $module_uuid = $_POST["module_uuid"]; } //validate the token $token = new token; if (!$token->validate($_SERVER['PHP_SELF'])) { message::add($text['message-invalid_token'],'negative'); header('Location: modules.php'); exit; } //check for all required data $msg = ''; if (strlen($module_label) == 0) { $msg .= $text['message-required'].$text['label-label']."
\n"; } if (strlen($module_name) == 0) { $msg .= $text['message-required'].$text['label-module_name']."
\n"; } //if (strlen($module_description) == 0) { $msg .= $text['message-required'].$text['label-description']."
\n"; } if (strlen($module_category) == 0) { $msg .= $text['message-required'].$text['label-module_category']."
\n"; } if (strlen($module_enabled) == 0) { $msg .= $text['message-required'].$text['label-enabled']."
\n"; } if (strlen($module_default_enabled) == 0) { $msg .= $text['message-required'].$text['label-default_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" && permission_exists('module_add')) { $module_uuid = uuid(); $array['modules'][0]['module_uuid'] = $module_uuid; message::add($text['message-add']); } if ($action == "update" && permission_exists('module_edit')) { $array['modules'][0]['module_uuid'] = $module_uuid; message::add($text['message-update']); } //add common array elements and execute if (is_array($array) && @sizeof($array) != 0) { $array['modules'][0]['module_label'] = $module_label; $array['modules'][0]['module_name'] = $module_name; $array['modules'][0]['module_description'] = $module_description; $array['modules'][0]['module_category'] = $module_category; $array['modules'][0]['module_order'] = $module_order; $array['modules'][0]['module_enabled'] = $module_enabled; $array['modules'][0]['module_default_enabled'] = $module_default_enabled; $database = new database; $database->app_name = 'modules'; $database->app_uuid = '5eb9cba1-8cb6-5d21-e36a-775475f16b5e'; $database->save($array); unset($array); $module = new modules; $module->xml(); header("Location: modules.php"); exit; } } } //pre-populate the form if (count($_GET)>0 && $_POST["persistformvar"] != "true") { $module_uuid = $_GET["id"]; $sql = "select * from v_modules "; $sql .= "where module_uuid = :module_uuid "; $parameters['module_uuid'] = $module_uuid; $database = new database; $row = $database->select($sql, $parameters, 'row'); if (is_array($row) && @sizeof($row) != 0) { $module_label = $row["module_label"]; $module_name = $row["module_name"]; $module_description = $row["module_description"]; $module_category = $row["module_category"]; $module_order = $row["module_order"]; $module_enabled = $row["module_enabled"]; $module_default_enabled = $row["module_default_enabled"]; } unset($sql, $parameters, $row); } //create token $object = new token; $token = $object->create($_SERVER['PHP_SELF']); //show the header if ($action == "add") { $document['title'] = $text['title-module_add']; } if ($action == "update") { $document['title'] = $text['title-module_edit']; } require_once "resources/header.php"; //show the content echo "
\n"; echo "
\n"; echo "
"; if ($action == "add") { echo "".$text['header-module_add'].""; } if ($action == "update") { echo "".$text['header-module_edit'].""; } echo "
\n"; echo "
\n"; echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','id'=>'btn_back','style'=>'margin-right: 15px;','link'=>'modules.php']); echo button::create(['type'=>'submit','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','id'=>'btn_save']); 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 "\n"; 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 "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
\n"; echo " ".$text['label-label']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['label-module_name']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['label-order']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['label-module_category']."\n"; echo "\n"; $table_name = 'v_modules'; $field_name = 'module_category'; $sql_where_optional = ''; $field_current_value = $module_category; echo html_select_other($table_name, $field_name, $sql_where_optional, $field_current_value); echo "
\n"; echo " ".$text['label-enabled']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['label-default_enabled']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo " ".$text['label-description']."\n"; echo "\n"; echo " \n"; echo "
"; echo "

"; if ($action == "update") { echo "\n"; } echo "\n"; echo "
"; //include the footer require_once "resources/footer.php"; ?>