Portions created by the Initial Developer are Copyright (C) 2016-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('pin_number_add') || permission_exists('pin_number_edit')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //action add or update if (is_uuid($_REQUEST["id"])) { $action = "update"; $pin_number_uuid = $_REQUEST["id"]; } else { $action = "add"; } //get http post variables and set them to php variables if (count($_POST)>0) { $pin_number = $_POST["pin_number"]; $accountcode = $_POST["accountcode"]; $enabled = $_POST["enabled"]; $description = $_POST["description"]; } if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) { $msg = ''; if ($action == "update") { $pin_number_uuid = $_POST["pin_number_uuid"]; } //validate the token $token = new token; if (!$token->validate($_SERVER['PHP_SELF'])) { message::add($text['message-invalid_token'],'negative'); header('Location: pin_numbers.php'); exit; } //check for all required data if (strlen($pin_number) == 0) { $msg .= $text['message-required']." ".$text['label-pin_number']."
\n"; } //if (strlen($accountcode) == 0) { $msg .= $text['message-required']." ".$text['label-accountcode']."
\n"; } if (strlen($enabled) == 0) { $msg .= $text['message-required']." ".$text['label-enabled']."
\n"; } //if (strlen($description) == 0) { $msg .= $text['message-required']." ".$text['label-description']."
\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('pin_number_add')) { //begin array $pin_number_uuid = uuid(); $array['pin_numbers'][0]['pin_number_uuid'] = $pin_number_uuid; //set message message::add($text['message-add']); } if ($action == "update" && permission_exists('pin_number_edit')) { //begin array $array['pin_numbers'][0]['pin_number_uuid'] = $pin_number_uuid; //set message message::add($text['message-update']); } if (is_array($array) && @sizeof($array) != 0) { //add common array items $array['pin_numbers'][0]['domain_uuid'] = $domain_uuid; $array['pin_numbers'][0]['pin_number'] = $pin_number; $array['pin_numbers'][0]['accountcode'] = $accountcode; $array['pin_numbers'][0]['enabled'] = $enabled; $array['pin_numbers'][0]['description'] = $description; //save data $database = new database; $database->app_name = 'pin_numbers'; $database->app_uuid = '4b88ccfb-cb98-40e1-a5e5-33389e14a388'; $database->save($array); unset($array); //redirect header("Location: pin_numbers.php"); exit; } } } //pre-populate the form if (count($_GET) > 0 && $_POST["persistformvar"] != "true") { $pin_number_uuid = $_GET["id"]; $sql = "select * from v_pin_numbers "; $sql .= "where domain_uuid = :domain_uuid "; $sql .= "and pin_number_uuid = :pin_number_uuid "; $parameters['domain_uuid'] = $domain_uuid; $parameters['pin_number_uuid'] = $pin_number_uuid; $database = new database; $row = $database->select($sql, $parameters, 'row'); if (is_array($row) && @sizeof($row) != 0) { $pin_number = $row["pin_number"]; $accountcode = $row["accountcode"]; $enabled = $row["enabled"]; $description = $row["description"]; } unset($sql, $parameters, $row); } //create token $object = new token; $token = $object->create($_SERVER['PHP_SELF']); //show the header $document['title'] = $text['title-pin_number']; require_once "resources/header.php"; //show the content echo "
\n"; echo "
\n"; echo "
".$text['title-pin_number']."
\n"; echo "
\n"; echo button::create(['type'=>'button','label'=>$text['button-back'],'icon'=>$_SESSION['theme']['button_icon_back'],'id'=>'btn_back','style'=>'margin-right: 15px;','link'=>'pin_numbers.php']); echo button::create(['type'=>'submit','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','name'=>'action','value'=>'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 " ".$text['label-pin_number']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-pin_number']."\n"; echo "
\n"; echo " ".$text['label-accountcode']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-accountcode']."\n"; echo "
\n"; echo " ".$text['label-enabled']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-enabled']."\n"; echo "
\n"; echo " ".$text['label-description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-description']."\n"; echo "
"; echo "

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