Portions created by the Initial Developer are Copyright (C) 2018 the Initial Developer. All Rights Reserved. */ //includes require_once "root.php"; require_once "resources/require.php"; require_once "resources/check_auth.php"; //check permissions if (permission_exists('email_template_add') || permission_exists('email_template_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"; $email_template_uuid = $_REQUEST["id"]; } else { $action = "add"; } //get http post variables and set them to php variables if (is_array($_POST)) { $domain_uuid = $_POST["domain_uuid"]; $template_language = $_POST["template_language"]; $template_category = $_POST["template_category"]; $template_subcategory = $_POST["template_subcategory"]; $template_subject = $_POST["template_subject"]; $template_body = $_POST["template_body"]; $template_type = $_POST["template_type"]; $template_enabled = $_POST["template_enabled"]; $template_description = $_POST["template_description"]; } //process the user data and save it to the database if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { //get the uuid from the POST if ($action == "update") { $email_template_uuid = $_POST["email_template_uuid"]; } //validate the token $token = new token; if (!$token->validate($_SERVER['PHP_SELF'])) { message::add($text['message-invalid_token'],'negative'); header('Location: email_templates.php'); exit; } //check for all required data $msg = ''; if (strlen($template_language) == 0) { $msg .= $text['message-required']." ".$text['label-template_language']."
\n"; } if (strlen($template_category) == 0) { $msg .= $text['message-required']." ".$text['label-template_category']."
\n"; } //if (strlen($template_subcategory) == 0) { $msg .= $text['message-required']." ".$text['label-template_subcategory']."
\n"; } if (strlen($template_subject) == 0) { $msg .= $text['message-required']." ".$text['label-template_subject']."
\n"; } if (strlen($template_body) == 0) { $msg .= $text['message-required']." ".$text['label-template_body']."
\n"; } //if (strlen($domain_uuid) == 0) { $msg .= $text['message-required']." ".$text['label-domain_uuid']."
\n"; } //if (strlen($template_type) == 0) { $msg .= $text['message-required']." ".$text['label-template_type']."
\n"; } if (strlen($template_enabled) == 0) { $msg .= $text['message-required']." ".$text['label-template_enabled']."
\n"; } //if (strlen($template_description) == 0) { $msg .= $text['message-required']." ".$text['label-template_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 the email_template_uuid if (!is_uuid($_POST["email_template_uuid"])) { $email_template_uuid = uuid(); } //prepare the array $array['email_templates'][0]['domain_uuid'] = $domain_uuid; $array['email_templates'][0]['email_template_uuid'] = $email_template_uuid; $array['email_templates'][0]['template_language'] = $template_language; $array['email_templates'][0]['template_category'] = $template_category; $array['email_templates'][0]['template_subcategory'] = $template_subcategory; $array['email_templates'][0]['template_subject'] = $template_subject; $array['email_templates'][0]['template_body'] = $template_body; $array['email_templates'][0]['template_type'] = $template_type; $array['email_templates'][0]['template_enabled'] = $template_enabled; $array['email_templates'][0]['template_description'] = $template_description; //save to the data $database = new database; $database->app_name = 'email_templates'; $database->app_uuid = '8173e738-2523-46d5-8943-13883befd2fd'; if (strlen($email_template_uuid) > 0) { $database->uuid($email_template_uuid); } $database->save($array); $message = $database->message; //redirect the user if (isset($action)) { if ($action == "add") { message::add($text['message-add']); } if ($action == "update") { message::add($text['message-update']); } header('Location: email_template_edit.php?id='.escape($email_template_uuid)); exit; } } //pre-populate the form if (is_array($_GET) && $_POST["persistformvar"] != "true") { $email_template_uuid = $_GET["id"]; $sql = "select * from v_email_templates "; $sql .= "where email_template_uuid = :email_template_uuid "; //$sql .= "and domain_uuid = :domain_uuid "; $parameters['email_template_uuid'] = $email_template_uuid; //$parameters['domain_uuid'] = $domain_uuid; $database = new database; $row = $database->select($sql, $parameters, 'row'); if (is_array($row) && @sizeof($row) != 0) { $domain_uuid = $row["domain_uuid"]; $template_language = $row["template_language"]; $template_category = $row["template_category"]; $template_subcategory = $row["template_subcategory"]; $template_subject = $row["template_subject"]; $template_body = $row["template_body"]; $template_type = $row["template_type"]; $template_enabled = $row["template_enabled"]; $template_description = $row["template_description"]; } unset($sql, $parameters, $row); } //load editor preferences/defaults $setting_size = $_SESSION["editor"]["font_size"]["text"] != '' ? $_SESSION["editor"]["font_size"]["text"] : '12px'; $setting_theme = $_SESSION["editor"]["theme"]["text"] != '' ? $_SESSION["editor"]["theme"]["text"] : 'cobalt'; $setting_invisibles = $_SESSION["editor"]["invisibles"]["boolean"] != '' ? $_SESSION["editor"]["invisibles"]["boolean"] : 'false'; $setting_indenting = $_SESSION["editor"]["indent_guides"]["boolean"] != '' ? $_SESSION["editor"]["indent_guides"]["boolean"] : 'false'; $setting_numbering = $_SESSION["editor"]["line_numbers"]["boolean"] != '' ? $_SESSION["editor"]["line_numbers"]["boolean"] : 'true'; //create token $object = new token; $token = $object->create($_SERVER['PHP_SELF']); //include the header $document['title'] = $text['title-email_template']; require_once "resources/header.php"; echo "\n"; echo "\n"; //show the content echo "
\n"; echo "
\n"; echo "
".$text['title-email_template']."
\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'=>'email_templates.php']); echo button::create(['type'=>'button','label'=>$text['button-save'],'icon'=>$_SESSION['theme']['button_icon_save'],'id'=>'btn_save','onclick'=>"set_value(); $('#frm').submit();"]); 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 "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "
\n"; echo " ".$text['label-template_language']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_language']."\n"; echo "
\n"; echo " ".$text['label-template_category']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_category']."\n"; echo "
\n"; echo " ".$text['label-template_subcategory']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_subcategory']."\n"; echo "
\n"; echo " ".$text['label-template_subject']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_subject']."\n"; echo "
\n"; echo " ".$text['label-template_body']."\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['description-template_body']."\n"; echo "
\n"; echo " ".$text['label-domain']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-domain_uuid']."\n"; echo "
\n"; echo " ".$text['label-template_type']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_type']."\n"; echo "
\n"; echo " ".$text['label-template_enabled']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_enabled']."\n"; echo "
\n"; echo " ".$text['label-template_description']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-template_description']."\n"; echo "
"; echo "

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