golden hour
/home/phakp/public_html/formtools/admin/clients
⬆️ Go Up
Upload
File/Folder
Size
Actions
add.php
3.79 KB
Del
OK
edit.php
2.12 KB
Del
OK
index.php
2.36 KB
Del
OK
page_forms.php
2.93 KB
Del
OK
page_main.php
3.86 KB
Del
OK
page_settings.php
2.76 KB
Del
OK
Edit: page_settings.php
<?php use FormTools\Accounts; use FormTools\Administrator; use FormTools\Core; use FormTools\Forms; use FormTools\General; use FormTools\Pages; use FormTools\Themes; $LANG = Core::$L; $req_password_special_chars = Core::getRequiredPasswordSpecialChars(); $success = true; $message = ""; if (isset($_POST['update_client'])) { list($success, $message) = Administrator::adminUpdateClient($request, 2); } // if required, update the list of available languages if (isset($_GET["refresh_lang_list"])) { list($success, $message) = Core::$translations->refreshLanguageList(); } $client_info = Accounts::getAccountInfo($client_id); $forms = Forms::searchForms(array( "account_id" => $client_id, "status" => "" )); $replacement_info = array( "datefunctionlink" => '<a href="http://ca3.php.net/manual/en/function.date.php" target="_blank">date()</a>' ); // ------------------------------------------------------------------------------------------- // compile header information $page_vars["page"] = "settings"; $page_vars["g_success"] = $success; $page_vars["g_message"] = $message; $page_vars["page_url"] = Pages::getPageUrl("edit_client_settings", array("client_id" => $client_id)); $page_vars["head_title"] = "{$LANG["phrase_edit_client"]} - {$LANG["word_settings"]}"; $page_vars["phrase_one_special_char"] = General::evalSmartyString($LANG["phrase_one_special_char"], array("chars" => $req_password_special_chars)); $page_vars["client_info"] = $client_info; $page_vars["forms"] = $forms; $page_vars["client_id"] = $client_id; $page_vars["text_date_formatting_link"] = General::evalSmartyString($LANG["text_date_formatting_link"], $replacement_info); $page_vars["head_js"] = <<< END var rules = []; rules.push("required,page_titles,{$LANG["validation_no_titles"]}"); rules.push("required,menu_id,{$LANG["validation_no_menu"]}"); rules.push("required,theme,{$LANG["validation_no_theme"]}"); rules.push("function,validate_swatch"); rules.push("required,login_page,{$LANG["validation_no_client_login_page"]}"); rules.push("required,logout_url,{$LANG["validation_no_logout_url"]}"); rules.push("required,ui_language,{$LANG["validation_no_ui_language"]}"); rules.push("required,sessions_timeout,{$LANG["validation_no_sessions_timeout"]}"); rules.push("digits_only,sessions_timeout,{$LANG["validation_invalid_sessions_timeout"]}"); rules.push("required,date_format,{$LANG["validation_no_date_format"]}"); function validate_swatch() { var theme = $("#theme").val(); var swatch_id = "#" + theme + "_theme_swatches"; if ($(swatch_id).length > 0 && $(swatch_id).val() == "") { return [[$(swatch_id)[0], "{$LANG["validation_no_theme_swatch"]}"]]; } return true; } $(function() { $("#settings_form :input:visible:enabled:first").focus(); }); END; Themes::displayPage("admin/clients/edit.tpl", $page_vars);
Save