Portions created by the Initial Developer are Copyright (C) 2018 the Initial Developer. All Rights Reserved. */ //set the include path $conf = glob("{/usr/local/etc,/etc}/fusionpbx/config.conf", GLOB_BRACE); set_include_path(parse_ini_file($conf[0])['document.root']); //includes files 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 (count($_POST) > 0) { $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"] ?: 'false'; $template_description = $_POST["template_description"]; } //process the user data and save it to the database if (!empty($_POST) && empty($_POST["persistformvar"])) { //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 (empty($template_language)) { $msg .= $text['message-required']." ".$text['label-template_language']."
\n"; } if (empty($template_category)) { $msg .= $text['message-required']." ".$text['label-template_category']."
\n"; } //if (empty($template_subcategory)) { $msg .= $text['message-required']." ".$text['label-template_subcategory']."
\n"; } if (empty($template_subject)) { $msg .= $text['message-required']." ".$text['label-template_subject']."
\n"; } if (empty($template_body)) { $msg .= $text['message-required']." ".$text['label-template_body']."
\n"; } //if (empty($domain_uuid)) { $msg .= $text['message-required']." ".$text['label-domain_uuid']."
\n"; } //if (empty($template_type)) { $msg .= $text['message-required']." ".$text['label-template_type']."
\n"; } if (empty($template_enabled)) { $msg .= $text['message-required']." ".$text['label-template_enabled']."
\n"; } //if (empty($template_description)) { $msg .= $text['message-required']." ".$text['label-template_description']."
\n"; } if (!empty($msg) && empty($_POST["persistformvar"])) { 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 (!empty($email_template_uuid)) { $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 (count($_GET)>0 && empty($_POST["persistformvar"])) { $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 (!empty($row)) { $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); } //set the defaults if (empty($template_enabled)) { $template_enabled = 'true'; } //load editor preferences/defaults $setting_size = !empty($_SESSION["editor"]["font_size"]["text"]) ? $_SESSION["editor"]["font_size"]["text"] : '12px'; $setting_theme = !empty($_SESSION["editor"]["theme"]["text"]) ? $_SESSION["editor"]["theme"]["text"] : 'cobalt'; $setting_invisibles = !empty($_SESSION["editor"]["invisibles"]["boolean"]) ? $_SESSION["editor"]["invisibles"]["boolean"] : 'false'; $setting_indenting = !empty($_SESSION["editor"]["indent_guides"]["boolean"]) ? $_SESSION["editor"]["indent_guides"]["boolean"] : 'false'; $setting_numbering = !empty($_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 !empty($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"; if (substr($_SESSION['theme']['input_toggle_style']['text'], 0, 6) == 'switch') { echo " \n"; } else { 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"; ?>