Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\miniorange_oauth_client\Form; use Drupal; use Drupal\Core\..
Decoded Output download
<?php
namespace Drupal\miniorange_oauth_client\Form;
use Drupal;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\FormBase;
use Drupal\miniorange_oauth_client\DBQueries;
use Drupal\miniorange_oauth_client\appValues;
use Drupal\miniorange_oauth_client\Utilities;
use Drupal\Core\Config\Config;
use Drupal\Core\Config\ImmutableConfig;
use Drupal\Core\Url;
use Drupal\Core\Render\Markup;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Response;
class miniOrangeSettings extends FormBase
{
public ImmutableConfig $config;
public $messenger;
public Config $config_factory;
public function __construct()
{
$this->config = Drupal::config("miniorange_oauth_client.settings");
$this->messenger = Drupal::messenger();
$this->config_factory = \Drupal::configFactory()->getEditable("miniorange_oauth_client.settings");
}
public function getFormId()
{
return "miniorange_settings";
}
public function buildForm(array $form, FormStateInterface $form_state)
{
global $base_url;
$form["markup_library"] = array("#attached" => array("library" => array("miniorange_oauth_client/miniorange_oauth_client.admin", "miniorange_oauth_client/miniorange_oauth_client.style_settings", "core/drupal.dialog.ajax")));
$sS = $this->config->get("miniorange_oauth_client_base_url");
$q7 = Utilities::isCustomerRegistered($form, $form_state);
$form["markup_top"] = array("#markup" => "<div class="mo_oauth_table_layout_1"><div class="mo_oauth_table_layout mo_oauth_container">");
if (!(isset($_GET["app"]) && $_GET["app"] != '')) {
goto kY;
}
$Py = new appValues($_GET["app"]);
$form["markup_top_vt_start_app_specific"] = array("#markup" => "<br><h2>Signin Settings</h2><hr><br>");
$form["miniorange_oauth_enable_autocreate_users"] = array("#type" => "checkbox", "#disabled" => $q7, "#default_value" => $Py->autocreateuser, "#title" => t("Check this option if you want to enable <b>auto creation</b> of users if user does not exist."));
$form["miniorange_oauth_client_logout_url"] = array("#type" => "url", "#disabled" => $q7, "#maxlength" => "900", "#title" => t("Default Redirect URL after logout"), "#default_value" => $Py->singlelogouturl, "#attributes" => array("style" => "width:73%", "placeholder" => "Enter Default Redirect URL"), "#prefix" => "<br>");
$form["miniorange_oauth_set_token_in_session_header"] = array("#markup" => "<br><h3>Set Access/ID token in Session and Cookies</h3><hr>");
$form["miniorange_oauth_set_token_session"] = array("#type" => "checkbox", "#title" => t("<b>Enable this checkbox to set Access/ID Token in the Session and Cookies</b>"), "#default_value" => $Py->settokeninsession, "#disabled" => $q7);
$form["miniorange_oauth_send_id_token"] = array("#type" => "checkbox", "#title" => t("<b>Enable this checkbox to send ID Token in End Session Endpoint request</b>"), "#default_value" => $Py->sendidtokeninslorequest, "#disabled" => $q7, "#states" => array("disabled" => array(":input[name="miniorange_oauth_set_token_session"]" => array("checked" => false))));
$form["provider_specific_signin_settings_submit"] = array("#type" => "submit", "#value" => t("Save Configuration"), "#disabled" => $q7, "#button_type" => "primary", "#submit" => array("::miniorange_oauth_client_save_provider_specific_signin_settings"), "#prefix" => "<br>");
Utilities::spConfigGuide($form, $form_state);
Utilities::moOAuthShowCustomerSupportIcon($form, $form_state);
return $form;
kY:
$sT = DBQueries::get_all_app_names();
$U1 = array();
$Yp = 0;
foreach ($sT as $dc) {
$U1[$dc->app_name] = $dc->app_name;
$Yp++;
Tv:
}
Tg:
if (!empty($U1)) {
goto Uc;
}
$q7 = true;
Uc:
$form["miniorange_oauth_client_base_url"] = array("#type" => "url", "#id" => "text_field", "#title" => t("Base URL: "), "#disabled" => $q7, "#description" => t("<b>Note:</b> If your provider only support HTTPS Callback URL and you have HTTP site, just save your base site URL with HTTPS."), "#default_value" => $sS, "#attributes" => array());
$form["miniorange_oauth_client_default_relaystate"] = array("#type" => "url", "#disabled" => $q7, "#maxlength" => "900", "#title" => t("Default Redirect URL after login:"), "#default_value" => $this->config->get("miniorange_oauth_client_default_relaystate"), "#attributes" => array("style" => "width:73%", "placeholder" => "Enter Default Redirect URL"));
$form["markup_top_vt_start"] = array("#markup" => "<br><h2>Page Restriction</h2><hr><br>");
if (empty($U1)) {
goto NP;
}
$form["miniorange_oauth_client_selected_app"] = array("#title" => t("Select an Application for automatically redirecting the user to: "), "#id" => "miniorange_oauth_client_selected_app", "#type" => "select", "#disabled" => $q7, "#description" => "Select an OAuth Server", "#default_value" => $this->config->get("auto_redirect_app_name"), "#options" => $U1, "#attributes" => array("style" => "width:73%"), "#states" => array("visible" => array(array(":input[name = "miniorange_oauth_client_auto_redirect"]" => array("checked" => TRUE)), "or", array(":input[name = "miniorange_oauth_client_force_auth"]" => array("checked" => TRUE)))));
goto Mk;
NP:
$form["miniorange_oauth_client_selected_app"] = array("#id" => "miniorange_oauth_client_selected_app", "#markup" => "<div class='mo_oauth_highlight_background_note_1'>\xd\xa <b class='mo_note_css'>Please Note:</b> You need to configure atleast 1 application before you enable any of the below three checkboxes.</div><br>");
Mk:
$form["miniorange_oauth_client_force_auth"] = array("#type" => "checkbox", "#id" => "miniorange_oauth_client_force_auth", "#disabled" => $q7, "#title" => t("Protect website against anonymous access"), "#default_value" => $this->config->get("miniorange_oauth_client_force_auth"), "#description" => t("<b>Note: </b>Users will be redirected to your OAuth server for login in case user is not logged in and tries to access website.<br><br>"), "#states" => array("disabled" => array(":input[name = "miniorange_oauth_client_auto_redirect"]" => array("checked" => true))));
$form["miniorange_oauth_set_of_page_restriction"] = array("#type" => "fieldset", "#states" => array("visible" => array(":input[name="miniorange_oauth_client_force_auth"]" => array("checked" => TRUE))));
$Gh = ["whitelist_pages" => "Pages to exclude from restriction", "restrict_pages" => "Pages to be restricted"];
$form["miniorange_oauth_set_of_page_restriction"]["choose_type_of_page_restriction"] = array("#type" => "radios", "#options" => $Gh, "#attributes" => array("class" => array("container-inline")), "#default_value" => is_null($this->config->get("miniorange_oauth_page_restriction_type")) ? "whitelist_pages" : $this->config->get("miniorange_oauth_page_restriction_type"));
$form["miniorange_oauth_set_of_page_restriction"]["markup_desc_page_restriction"] = array("#markup" => "<p>Enter the <b>line seperated relative URLs</b>. For instance, If the site url is <b>https://www.xyz.com/yyy</b> then the relative URL would be <b>/yyy</b>.
\xa <ul>
\xa <li>If you want to restrict/allow access to particular <b>'/abc/pqr/xyz'</b> route then use <b>'/abc/pqr/xyz'</b>. </li>
\xa <li>You also have the option to use the <b>'*'</b> wildcard in URLs to manage page access. For instance, to restrict/allow access to all routes under <b>'/abc'</b>, use the wildcard URL <b>'/abc/*'</b>.</li>
</ul></p>");
$form["miniorange_oauth_set_of_page_restriction"]["miniorange_oauth_page_whitelist_urls"] = array("#type" => "textarea", "#title" => t("Pages to exclude from auto-redirect to OAuth Provider for anonymous users"), "#attributes" => array("style" => "width:640px;height:80px; background-color: hsla(0,0%,0%,0.08) !important", "placeholder" => "Enter the list of semicolon separated relative URLs of your pages in the textarea."), "#description" => t("<b>Note: </b>Users can access these pages anonymously.<b> Keep this textarea empty if you want to restrict all pages of your site</b>"), "#disabled" => $q7, "#resizable" => FALSE, "#default_value" => !empty($this->config->get("miniorange_oauth_page_restriction_whitelisted_pages")) ? implode("\xa", explode(";", $this->config->get("miniorange_oauth_page_restriction_whitelisted_pages"))) : '', "#states" => array("visible" => array(":input[name="choose_type_of_page_restriction"]" => array("value" => "whitelist_pages"))), "#suffix" => "<br>");
$form["miniorange_oauth_set_of_page_restriction"]["miniorange_oauth_page_restrict_urls"] = array("#type" => "textarea", "#title" => t("Pagess to be restricted"), "#attributes" => array("style" => "width:640px;height:80px; background-color: hsla(0,0%,0%,0.08) !important", "placeholder" => "Enter the list of semicolon separated relative URLs of your pages in the textarea."), "#description" => t("<b>Note: </b>Users will be redirected to your OAuth Server for login when the restricted page is accessed.<b> Only these pages will be restricted and all other pages can be accessed anonymously</b>"), "#disabled" => $q7, "#resizable" => FALSE, "#default_value" => !empty($this->config->get("miniorange_oauth_page_restriction_restricted_pages")) ? implode("
", explode(";", $this->config->get("miniorange_oauth_page_restriction_restricted_pages"))) : '', "#states" => array("visible" => array(":input[name="choose_type_of_page_restriction"]" => array("value" => "restrict_pages"))), "#suffix" => "<br>");
$form["miniorange_oauth_client_auto_redirect"] = array("#type" => "checkbox", "#id" => "miniorange_oauth_client_auto_redirect", "#disabled" => $q7, "#title" => t("Check this option if you want to <b>auto redirect the user to OAuth Server</b>"), "#default_value" => $this->config->get("miniorange_oauth_client_auto_redirect_to_idp"), "#description" => t("<b>Note: </b>Users will be redirected to your OAuth server for login when the login page is accessed.<br><br>"), "#states" => array("disabled" => array(":input[name = "miniorange_oauth_client_force_auth"]" => array("checked" => true))));
$form["miniorange_oauth_client_enable_page_access"] = array("#type" => "checkbox", "#disabled" => $q7, "#title" => t("Check this option if you want to enable <b>page access</b>"), "#default_value" => $this->config->get("miniorange_oauth_client_enable_page_access"), "#description" => t("<b>Note: </b> Checking this option will enable the user to visit any page despite of the redirection to OAuth Server settings (above two) are enabled.</b><br/> <p class="mo_oauth_highlight_background_note_1"> <b>Put </b> <a>?stop_redirect=true</a> after the page url.</p> <br/>"), "#states" => array("visible" => array(array(":input[name="miniorange_oauth_client_force_auth"]" => array("checked" => TRUE)), "or", array(":input[name="miniorange_oauth_client_auto_redirect"]" => array("checked" => TRUE)))));
global $base_url;
$sS = $this->config->get("miniorange_oauth_client_base_url");
if (!empty($sS)) {
goto Zz;
}
$sS = $base_url;
Zz:
$form["miniorange_oauth_client_enable_backdoor"] = array("#type" => "checkbox", "#disabled" => $q7, "#title" => t("Check this option if you want to enable <b>backdoor login</b>"), "#default_value" => is_null($this->config->get("miniorange_oauth_client_enable_backdoor")) ? true : $this->config->get("miniorange_oauth_client_enable_backdoor"), "#description" => t("<b>Note: </b> Checking this option <b>creates a backdoor to login to your Website using Drupal credentials</b> incase you get locked out of your OAuth server. <b>Please note down following URL.</b>"), "#states" => array("checked" => array(array(":input[name = "miniorange_oauth_client_auto_redirect"]" => array("checked" => TRUE)), "or", array(":input[name = "miniorange_oauth_client_force_auth"]" => array("checked" => TRUE)))));
$dC = $q7;
$form["markup_4"] = array("#markup" => "<p class="mo_oauth_highlight_background_note_1"><b>Backdoor URL: <a hidden=" . $dC . "><code>" . $sS . "/user/login?oauth_client_login=false</code></a></b></p><br>");
$form["domain_based_restriction"] = array("#markup" => "<br><h2>Domain Restriction</h2><hr>");
$form["miniorange_oauth_domain_restriction_checkbox"] = array("#type" => "checkbox", "#title" => t("Check this option if you want <b> Domain Restriction</b>"), "#disabled" => $q7, "#default_value" => $this->config->get("miniorange_oauth_enable_domain_restriction"));
$form["miniorange_oauth_set_of_radiobuttons"] = array("#type" => "fieldset", "#states" => array("visible" => array(":input[name="miniorange_oauth_domain_restriction_checkbox"]" => array("checked" => TRUE))));
$form["miniorange_oauth_set_of_radiobuttons"]["miniorange_oauth_allow_or_block_domains"] = array("#type" => "radios", "#maxlength" => 5, "#options" => array("white" => "I want to allow only some of the domains", "black" => "I want to block some of the domains"), "#default_value" => is_null($this->config->get("miniorange_oauth_domains_are_white_or_black")) ? "white" : $this->config->get("miniorange_oauth_domains_are_white_or_black"), "#disabled" => $q7);
$form["miniorange_oauth_set_of_radiobuttons"]["miniorange_oauth_domains"] = array("#type" => "textarea", "#title" => t("Enter list of domains"), "#attributes" => array("style" => "width:580px;height:80px; background-color: hsla(0,0%,0%,0.08) !important", "placeholder" => "Enter semicolon(;) separated domains (Eg. xxxx.com; xxxx.com)"), "#disabled" => $q7, "#default_value" => is_null($this->config->get("miniorange_oauth_domains")) ? '' : $this->config->get("miniorange_oauth_domains"), "#suffix" => "<br>");
$form["miniorange_oauth_require_profile_field"] = array("#prefix" => "<br>", "#type" => "checkbox", "#disabled" => $q7, "#title" => t("<b>Enable this checkbox to make selected user profile attributes required.</b>"), "#default_value" => $this->config->get("miniorange_oauth_require_profile_field"));
$form["miniorange_oauth_required_user_profile_attributes"] = array("#type" => "textarea", "#disabled" => $q7, "#default_value" => $this->config->get("miniorange_oauth_required_user_profile_attributes"), "#description" => "<b>Note: </b>As soon as user get created after first SSO, he will be redirected to the user profile page to enter mandatory fields.", "#attributes" => array("placeholder" => "Enter semicolon(;) separated profile attribute machine names that you want to make mandatory."), "#states" => array("visible" => array(":input[name="miniorange_oauth_require_profile_field"]" => array("checked" => TRUE))));
$form["miniorange_oauth_disable_profile_field"] = array("#type" => "checkbox", "#disabled" => $q7, "#title" => t("<b>Enable this checkbox to disable users profile attribute fields.</b>"), "#default_value" => $this->config->get("miniorange_oauth_disable_profile_field"));
$form["miniorange_oauth_auto_disable_fieldset"] = array("#type" => "fieldset", "#states" => array("visible" => array(":input[name="miniorange_oauth_disable_profile_field"]" => array("checked" => TRUE))));
$form["miniorange_oauth_auto_disable_fieldset"]["miniorange_oauth_disable_user_profile_attributes"] = array("#type" => "textarea", "#title" => t("Enter semicolon(;) separated profile attribute machine names that you disable."), "#disabled" => $q7, "#default_value" => $this->config->get("miniorange_oauth_disable_user_profile_attributes"), "#description" => "<b>Note: </b>The users would not be able to changes these attributes.", "#attributes" => array("placeholder" => "Enter semicolon(;) separated profile attribute machine names that you disable."));
$jx = $this->config->get("miniorange_oauth_disable_pass_confirm_pass");
$form["miniorange_oauth_auto_disable_fieldset"]["miniorange_oauth_disable_pass_confirm_pass"] = array("#title" => t("Disable/Hide "<u>Current password</u>", "<u>Password</u>" and "<u>Current Password</u>" fields of user profile page:"), "#type" => "radios", "#options" => array("editable" => t("Keep Editable"), "disable" => t("Disable"), "hide" => t("Disable and Hide")), "#default_value" => $jx ? $jx : "editable", "#attributes" => array("class" => array("container-inline")), "#required" => TRUE, "#prefix" => "<br>");
$form["miniorange_oauth_duplicate_username_header"] = array("#markup" => "<br><h3>Duplicate Username</h3><hr><p class="mo_oauth_highlight_background_note_1">
<strong>Note: </strong> At the time of user creation in Drupal, if user already exists with the same username, then create user with the incremental username. For eg. xyz, xyz01, xyz02, etc.</p>");
$form["miniorange_oauth_duplicate_username"] = array("#type" => "checkbox", "#title" => t("<b>Enable this checkbox to allow duplicate username to create user.</b>"), "#default_value" => \Drupal::config("miniorange_oauth_client.settings")->get("miniorange_oauth_duplicate_username"), "#disabled" => $q7);
$form["miniorange_oauth_client_gateway_config_submit"] = array("#type" => "submit", "#value" => t("Save Configuration"), "#disabled" => $q7, "#button_type" => "primary", "#submit" => array("::miniorange_oauth_client_save_signin_settings"), "#prefix" => "<br>", "#suffix" => "<br><br><br>");
global $base_url;
$R_ = array("idp_name" => array("data" => t("OAuth Server Name")), "edit" => array("data" => t("Sign in Settings")));
$sT = DBQueries::get_all_app_names();
$zt = array();
$Yp = 0;
foreach ($sT as $dc) {
$zt[$Yp] = $dc->app_name;
$Yp++;
uD:
}
xo:
foreach ($zt as $fh) {
$pR[$fh] = array("idp_name" => $fh, "edit" => Markup::create("<a href=" " . $base_url . "/admin/config/people/miniorange_oauth_client/settings?app=" . $fh . "" >Edit</a>"));
RZ:
}
fI:
$form["provider_specific_signin_settings"] = array("#markup" => "<h4>Provider Specific Sign in Settings</h4><hr>");
$form["mo_saml_idplist_table"] = array("#type" => "table", "#header" => $R_, "#rows" => isset($pR) && !empty($pR) ? $pR : '', "#empty" => t("<div class='mo_oauth_highlight_background_note_1'><b class='mo_note_css'>Please Note:</b> You have not configured any provider yet, Please Add provider by clicking <b>Add New Provider</b> button in <b>Configure OAuth</b> Tab</div><br>"));
Utilities::spConfigGuide($form, $form_state);
Utilities::moOAuthShowCustomerSupportIcon($form, $form_state);
return $form;
}
function miniorange_oauth_client_save_signin_settings($form, FormStateInterface $form_state)
{
$wI = $form_state->getValues();
global $base_url;
$NQ = $form["miniorange_oauth_client_auto_redirect"]["#value"];
$sM = $form["miniorange_oauth_client_default_relaystate"]["#value"];
$Sp = $form["miniorange_oauth_client_enable_backdoor"]["#value"];
$gi = $form["miniorange_oauth_client_base_url"]["#value"];
$gs = $form["miniorange_oauth_duplicate_username"]["#value"];
$y7 = $form["miniorange_oauth_domain_restriction_checkbox"]["#value"];
$rR = $form["miniorange_oauth_set_of_radiobuttons"]["miniorange_oauth_allow_or_block_domains"]["#value"];
$iF = trim($form["miniorange_oauth_set_of_radiobuttons"]["miniorange_oauth_domains"]["#value"]);
$iv = $wI["miniorange_oauth_client_force_auth"];
$Jk = $wI["choose_type_of_page_restriction"];
$YK = $wI["miniorange_oauth_page_whitelist_urls"];
$R3 = !empty($YK) ? explode("\xa", $YK) : [];
if (empty($R3)) {
goto HC;
}
$YK = array_filter($R3, "trim");
$YK = implode(";", $YK);
HC:
$f1 = $wI["miniorange_oauth_page_restrict_urls"];
$K8 = !empty($f1) ? explode("
", $f1) : [];
if (empty($K8)) {
goto Nr;
}
$f1 = array_filter($K8, "trim");
$f1 = implode(";", $f1);
Nr:
$y7 = empty($iF) ? 0 : $y7;
if (empty($iF)) {
goto V3;
}
if (!($y7 == 0)) {
goto Ze;
}
$y7 = 0;
$iF = '';
Ze:
goto YG;
V3:
$y7 = 0;
YG:
if ($iv == 0) {
goto wS;
}
if ($Jk == "whitelist_pages") {
goto J2;
}
$YK = '';
goto qk;
J2:
$f1 = '';
qk:
$NQ = 0;
goto UJ;
wS:
$iv = 0;
$Jk = null;
$f1 = '';
$YK = '';
UJ:
$rT = '';
$DP = '';
$ms = $wI["miniorange_oauth_require_profile_field"];
if (!$ms) {
goto Fd;
}
$rT = $wI["miniorange_oauth_required_user_profile_attributes"];
$rT = str_replace(" ", '', $rT);
$ms = empty($rT) ? 0 : 1;
Fd:
$mF = $wI["miniorange_oauth_disable_profile_field"];
if (!$mF) {
goto qr;
}
$DP = $wI["miniorange_oauth_disable_user_profile_attributes"];
$DP = str_replace(" ", '', $DP);
$this->config_factory->set("miniorange_oauth_disable_pass_confirm_pass", $wI["miniorange_oauth_disable_pass_confirm_pass"])->save();
qr:
$this->config_factory->set("miniorange_oauth_client_base_url", $gi)->save();
$sS = Utilities::getOAuthBaseURL($base_url);
$LZ = substr($sS, -1) == "/" ? $sS . "mo_login" : $sS . "/mo_login";
$this->config_factory->set("miniorange_auth_client_callback_uri", $LZ)->save();
$NQ = $NQ == 1 ? TRUE : FALSE;
$iv = $iv == 1 ? TRUE : FALSE;
$Sp = $Sp == 1 ? TRUE : FALSE;
$Dp = $wI["miniorange_oauth_client_enable_page_access"];
$Dp = $Dp == 1 ? TRUE : FALSE;
if ($NQ || $iv) {
goto Xy;
}
$this->config_factory->set("miniorange_oauth_client_enable_page_access", FALSE)->save();
goto CZ;
Xy:
$at = $form["miniorange_oauth_client_selected_app"]["#value"];
$this->config_factory->set("auto_redirect_app_name", $at)->save();
$this->config_factory->set("miniorange_oauth_client_enable_page_access", $Dp)->save();
CZ:
$this->config_factory->set("miniorange_oauth_enable_domain_restriction", $y7)->set("miniorange_oauth_domains_are_white_or_black", $rR)->set("miniorange_oauth_domains", $iF)->set("miniorange_oauth_client_force_auth", $iv)->set("miniorange_oauth_page_restriction_type", $Jk)->set("miniorange_oauth_page_restriction_whitelisted_pages", $YK)->set("miniorange_oauth_page_restriction_restricted_pages", $f1)->set("miniorange_oauth_client_auto_redirect_to_idp", $NQ)->set("miniorange_oauth_client_default_relaystate", $sM)->set("miniorange_oauth_client_enable_backdoor", $Sp)->set("miniorange_oauth_require_profile_field", $ms)->set("miniorange_oauth_required_user_profile_attributes", $rT)->set("miniorange_oauth_disable_profile_field", $mF)->set("miniorange_oauth_disable_user_profile_attributes", $DP)->set("miniorange_oauth_duplicate_username", $gs)->save();
$this->messenger->addMessage(t("Signin Settings successfully saved"));
drupal_flush_all_caches();
}
public function miniorange_oauth_client_save_provider_specific_signin_settings(array &$form, FormStateInterface $form_state)
{
$oS = $form["miniorange_oauth_enable_autocreate_users"]["#value"];
$LM = $form["miniorange_oauth_set_token_session"]["#value"];
$wu = $form["miniorange_oauth_send_id_token"]["#value"];
$PN = '';
if (!isset($form["miniorange_oauth_client_logout_url"]["#value"])) {
goto yw;
}
$PN = trim($form["miniorange_oauth_client_logout_url"]["#value"]);
yw:
if (!($LM == false)) {
goto Os;
}
$wu = 0;
Os:
$PE = \Drupal::database();
$PE->update("miniorange_oauth_client_apps")->fields(["single_logout_url" => $PN, "enable_auto_create_user" => $oS, "enable_set_token_in_session_header" => $LM, "send_id_token_in_slo_request" => $wu])->condition("app_name", $_GET["app"], "=")->execute();
$this->messenger->addMessage(t("Signin Settings successfully saved"));
$Eb = new RedirectResponse(Url::fromRoute("miniorange_oauth_client.settings")->toString());
$Eb->send();
return new Response();
}
public function submitForm(array &$form, FormStateInterface $form_state)
{
}
public function saved_support(array &$form, FormStateInterface $form_state)
{
$kP = $form["miniorange_oauth_client_email_address"]["#value"];
$Zp = $form["miniorange_oauth_client_phone_number"]["#value"];
$Xu = $form["miniorange_oauth_client_support_query"]["#value"];
Utilities::send_support_query($kP, $Zp, $Xu);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\miniorange_oauth_client\Form;
use Drupal;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\FormBase;
use Drupal\miniorange_oauth_client\DBQueries;
use Drupal\miniorange_oauth_client\appValues;
use Drupal\miniorange_oauth_client\Utilities;
use Drupal\Core\Config\Config;
use Drupal\Core\Config\ImmutableConfig;
use Drupal\Core\Url;
use Drupal\Core\Render\Markup;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Response;
class miniOrangeSettings extends FormBase
{
public ImmutableConfig $config;
public $messenger;
public Config $config_factory;
public function __construct()
{
$this->config = Drupal::config("\155\x69\156\x69\x6f\x72\x61\156\x67\145\137\157\141\165\164\150\x5f\x63\x6c\151\x65\x6e\x74\56\x73\145\164\164\x69\156\x67\163");
$this->messenger = Drupal::messenger();
$this->config_factory = \Drupal::configFactory()->getEditable("\155\151\156\151\157\x72\x61\156\147\145\x5f\x6f\141\x75\164\150\137\x63\154\151\x65\156\x74\56\163\145\x74\x74\151\156\x67\163");
}
public function getFormId()
{
return "\155\151\x6e\151\x6f\162\141\x6e\x67\145\137\163\x65\x74\x74\151\x6e\x67\163";
}
public function buildForm(array $form, FormStateInterface $form_state)
{
global $base_url;
$form["\155\x61\x72\153\x75\160\137\154\x69\142\x72\141\162\171"] = array("\x23\x61\164\x74\x61\x63\x68\145\x64" => array("\154\151\x62\x72\x61\x72\x79" => array("\x6d\x69\x6e\x69\x6f\x72\x61\x6e\147\145\x5f\x6f\x61\x75\164\150\x5f\x63\154\x69\x65\x6e\164\57\155\x69\156\151\157\x72\141\x6e\147\145\x5f\157\141\x75\164\x68\137\143\154\x69\145\156\x74\x2e\x61\x64\155\151\x6e", "\x6d\151\156\151\157\162\x61\156\x67\x65\x5f\x6f\x61\x75\164\150\x5f\143\154\151\x65\x6e\164\57\x6d\151\x6e\x69\157\x72\141\156\147\x65\137\157\141\165\164\150\137\143\154\x69\145\x6e\164\56\163\x74\171\154\x65\x5f\x73\145\164\164\151\156\x67\x73", "\x63\157\162\145\x2f\x64\162\165\x70\x61\154\x2e\x64\151\x61\x6c\x6f\147\x2e\x61\x6a\x61\170")));
$sS = $this->config->get("\155\151\x6e\151\x6f\162\x61\156\x67\x65\x5f\x6f\x61\x75\164\x68\137\143\x6c\x69\x65\156\x74\137\x62\141\163\145\x5f\x75\162\x6c");
$q7 = Utilities::isCustomerRegistered($form, $form_state);
$form["\x6d\x61\x72\153\165\x70\137\x74\157\160"] = array("\x23\155\141\x72\153\x75\x70" => "\74\144\151\166\x20\143\x6c\141\x73\163\75\x22\x6d\157\x5f\157\141\x75\x74\150\137\164\x61\x62\x6c\145\137\154\141\x79\x6f\x75\164\x5f\61\x22\76\74\144\x69\166\x20\143\154\x61\163\163\75\42\155\x6f\137\157\x61\165\x74\x68\x5f\164\x61\x62\154\x65\x5f\154\x61\171\x6f\x75\164\x20\x6d\x6f\x5f\x6f\x61\x75\164\x68\137\143\157\x6e\x74\141\x69\156\x65\162\42\76");
if (!(isset($_GET["\x61\x70\160"]) && $_GET["\141\160\160"] != '')) {
goto kY;
}
$Py = new appValues($_GET["\x61\x70\x70"]);
$form["\x6d\x61\x72\x6b\165\x70\137\x74\157\160\137\166\164\x5f\163\164\141\162\164\137\141\160\x70\137\163\160\145\143\x69\146\151\x63"] = array("\x23\155\141\x72\x6b\165\x70" => "\74\x62\162\x3e\74\x68\x32\x3e\x53\151\147\x6e\x69\x6e\x20\x53\x65\x74\164\151\x6e\147\163\74\x2f\150\62\x3e\x3c\x68\162\x3e\74\x62\162\76");
$form["\x6d\x69\156\151\157\x72\x61\x6e\147\x65\137\157\x61\x75\x74\x68\137\x65\x6e\141\142\x6c\x65\x5f\141\165\164\x6f\143\162\145\x61\x74\x65\137\x75\163\145\x72\163"] = array("\43\164\x79\160\145" => "\x63\x68\145\x63\153\142\x6f\x78", "\43\x64\151\x73\141\142\x6c\145\x64" => $q7, "\43\144\x65\x66\141\x75\x6c\x74\x5f\166\141\154\x75\145" => $Py->autocreateuser, "\43\x74\151\164\154\145" => t("\x43\x68\x65\x63\153\40\x74\x68\x69\163\40\157\x70\x74\151\157\x6e\40\x69\x66\x20\171\x6f\165\x20\167\x61\x6e\164\40\164\x6f\40\145\x6e\x61\x62\154\145\40\74\x62\x3e\141\165\164\157\x20\x63\162\x65\x61\164\151\157\156\x3c\57\x62\76\40\x6f\x66\40\x75\163\145\162\163\x20\x69\146\40\165\163\145\162\x20\144\x6f\x65\163\40\x6e\157\164\40\x65\170\x69\163\164\x2e"));
$form["\x6d\x69\156\x69\157\x72\141\x6e\x67\145\137\x6f\141\x75\164\x68\x5f\143\x6c\x69\x65\156\164\137\x6c\157\147\157\165\x74\137\165\x72\154"] = array("\43\x74\171\160\x65" => "\165\162\154", "\43\144\x69\163\141\142\x6c\x65\144" => $q7, "\43\155\x61\x78\154\x65\156\147\x74\150" => "\71\60\x30", "\43\x74\151\164\x6c\x65" => t("\104\x65\146\x61\x75\154\x74\40\x52\145\144\151\x72\x65\x63\164\40\125\122\114\x20\141\146\x74\x65\x72\40\x6c\x6f\147\157\x75\x74"), "\43\144\145\x66\141\165\x6c\164\x5f\166\141\x6c\165\145" => $Py->singlelogouturl, "\x23\141\164\164\162\151\142\x75\x74\x65\163" => array("\163\x74\x79\154\x65" => "\167\151\144\x74\x68\x3a\67\63\45", "\x70\154\141\143\145\150\x6f\x6c\144\x65\162" => "\x45\x6e\164\145\162\40\x44\x65\x66\x61\165\154\164\x20\122\145\x64\151\162\145\x63\164\x20\125\x52\114"), "\43\x70\162\145\146\x69\x78" => "\74\x62\162\x3e");
$form["\155\151\x6e\x69\157\x72\141\x6e\147\x65\x5f\x6f\x61\x75\x74\150\137\163\145\164\x5f\164\x6f\153\x65\156\137\151\156\137\163\145\163\163\151\x6f\x6e\137\x68\145\x61\x64\x65\x72"] = array("\x23\155\141\162\153\x75\160" => "\x3c\142\x72\x3e\x3c\150\x33\x3e\x53\145\164\40\101\143\x63\x65\163\163\57\x49\x44\40\164\x6f\x6b\x65\156\40\x69\x6e\x20\x53\x65\x73\x73\x69\x6f\156\x20\x61\156\144\x20\x43\157\157\x6b\x69\x65\163\x3c\x2f\x68\63\76\74\x68\162\76");
$form["\155\x69\x6e\151\157\162\141\x6e\x67\145\x5f\157\x61\x75\164\x68\x5f\163\x65\x74\137\x74\x6f\153\x65\x6e\137\x73\145\163\x73\x69\x6f\156"] = array("\x23\164\171\x70\145" => "\143\150\x65\x63\x6b\142\157\x78", "\43\164\151\164\154\x65" => t("\74\142\76\105\156\141\142\154\x65\x20\x74\150\x69\163\x20\143\150\x65\143\153\x62\157\x78\40\x74\157\x20\163\x65\164\40\101\x63\x63\x65\x73\163\57\x49\104\40\124\157\153\x65\156\40\151\156\x20\x74\150\145\40\x53\145\x73\x73\151\157\156\x20\141\x6e\x64\x20\103\157\157\153\x69\145\163\74\57\142\76"), "\43\x64\x65\x66\141\165\x6c\164\137\166\141\x6c\x75\x65" => $Py->settokeninsession, "\x23\144\151\x73\141\142\154\x65\x64" => $q7);
$form["\x6d\151\x6e\151\x6f\162\141\156\147\x65\x5f\157\x61\x75\164\150\x5f\x73\145\156\x64\137\x69\x64\x5f\164\x6f\x6b\x65\x6e"] = array("\43\x74\171\x70\145" => "\143\150\x65\x63\153\142\x6f\170", "\x23\164\x69\164\x6c\145" => t("\74\x62\76\105\x6e\x61\142\x6c\x65\x20\164\150\x69\163\x20\x63\x68\x65\x63\x6b\x62\x6f\170\x20\164\157\x20\x73\x65\156\144\40\x49\x44\40\124\157\x6b\145\156\x20\151\156\40\x45\x6e\144\x20\x53\145\163\x73\151\x6f\x6e\40\x45\x6e\144\x70\x6f\151\156\164\x20\x72\x65\x71\x75\x65\163\164\74\57\142\x3e"), "\43\x64\x65\x66\x61\165\x6c\164\137\x76\141\154\x75\x65" => $Py->sendidtokeninslorequest, "\43\x64\x69\x73\141\x62\x6c\x65\x64" => $q7, "\x23\x73\x74\x61\164\x65\163" => array("\x64\151\x73\141\142\154\145\144" => array("\72\151\x6e\x70\x75\x74\x5b\x6e\x61\155\145\x3d\x22\155\x69\x6e\x69\x6f\x72\x61\x6e\147\145\137\x6f\141\x75\x74\x68\137\x73\x65\x74\137\164\157\153\145\x6e\x5f\x73\x65\x73\163\151\x6f\x6e\42\135" => array("\143\x68\145\x63\153\145\144" => false))));
$form["\x70\x72\x6f\166\151\x64\x65\162\x5f\163\x70\x65\x63\151\146\x69\143\x5f\x73\x69\x67\156\x69\x6e\x5f\x73\145\164\164\151\156\x67\x73\137\x73\165\x62\155\x69\x74"] = array("\43\164\x79\160\145" => "\x73\165\x62\x6d\151\164", "\43\x76\x61\x6c\x75\145" => t("\x53\141\166\145\x20\x43\157\x6e\146\x69\147\x75\x72\x61\x74\x69\x6f\156"), "\43\x64\151\x73\141\x62\x6c\145\x64" => $q7, "\x23\142\165\x74\164\157\156\137\164\x79\x70\x65" => "\x70\162\x69\x6d\141\162\171", "\43\163\x75\x62\155\x69\x74" => array("\x3a\x3a\x6d\x69\156\x69\157\162\x61\x6e\147\x65\137\x6f\x61\165\164\150\137\x63\154\151\145\156\x74\137\x73\141\x76\145\137\160\x72\x6f\166\x69\x64\145\x72\137\x73\160\x65\x63\151\x66\151\x63\x5f\163\151\x67\156\x69\x6e\137\163\x65\164\x74\151\156\147\163"), "\43\x70\x72\145\146\x69\x78" => "\x3c\x62\162\76");
Utilities::spConfigGuide($form, $form_state);
Utilities::moOAuthShowCustomerSupportIcon($form, $form_state);
return $form;
kY:
$sT = DBQueries::get_all_app_names();
$U1 = array();
$Yp = 0;
foreach ($sT as $dc) {
$U1[$dc->app_name] = $dc->app_name;
$Yp++;
Tv:
}
Tg:
if (!empty($U1)) {
goto Uc;
}
$q7 = true;
Uc:
$form["\155\x69\156\x69\157\162\141\x6e\147\145\x5f\x6f\141\x75\x74\150\137\143\x6c\x69\145\x6e\x74\137\x62\x61\163\145\x5f\x75\162\x6c"] = array("\43\x74\x79\160\x65" => "\165\162\154", "\43\151\x64" => "\x74\145\170\x74\137\x66\x69\145\x6c\144", "\43\164\151\164\x6c\x65" => t("\x42\x61\163\x65\x20\x55\122\114\72\x20"), "\x23\144\x69\x73\x61\142\154\x65\144" => $q7, "\43\x64\145\x73\143\x72\151\160\x74\151\157\156" => t("\74\x62\x3e\116\157\164\145\x3a\x3c\x2f\142\x3e\x20\111\x66\x20\171\x6f\165\x72\x20\x70\x72\x6f\x76\151\144\x65\x72\x20\x6f\156\154\171\40\163\x75\160\x70\157\162\164\x20\x48\124\x54\120\123\x20\x43\141\x6c\x6c\x62\x61\143\153\x20\125\122\x4c\x20\x61\x6e\x64\x20\171\157\x75\x20\150\x61\x76\145\x20\110\x54\x54\x50\40\x73\x69\x74\145\x2c\40\x6a\165\163\164\40\x73\x61\166\145\40\171\157\165\162\40\x62\141\163\145\x20\163\x69\x74\x65\40\125\122\114\40\x77\x69\164\x68\x20\110\x54\x54\120\123\x2e"), "\x23\144\x65\146\x61\x75\x6c\x74\137\x76\x61\154\165\x65" => $sS, "\x23\x61\x74\x74\162\151\x62\x75\x74\145\163" => array());
$form["\155\151\156\x69\x6f\162\141\156\147\145\x5f\157\141\165\x74\150\137\143\154\151\x65\156\164\137\x64\x65\x66\x61\x75\x6c\x74\x5f\x72\x65\154\141\x79\x73\x74\141\164\145"] = array("\43\164\171\160\145" => "\165\162\x6c", "\x23\x64\151\x73\x61\142\154\x65\144" => $q7, "\x23\x6d\x61\x78\x6c\x65\156\147\164\x68" => "\71\60\60", "\43\x74\x69\x74\x6c\x65" => t("\x44\x65\x66\141\x75\154\x74\40\x52\x65\x64\x69\x72\x65\143\x74\40\125\122\114\40\141\x66\x74\x65\162\40\154\x6f\x67\151\156\72"), "\43\x64\145\x66\x61\x75\x6c\164\137\166\x61\x6c\x75\145" => $this->config->get("\x6d\151\156\x69\157\162\x61\x6e\147\x65\137\157\141\165\x74\x68\137\143\x6c\151\145\156\x74\137\x64\x65\x66\x61\165\x6c\164\x5f\x72\x65\154\141\x79\x73\164\x61\x74\145"), "\43\x61\x74\x74\x72\151\x62\165\x74\145\x73" => array("\x73\164\x79\x6c\145" => "\167\x69\x64\164\150\x3a\67\x33\45", "\160\x6c\x61\x63\145\150\157\x6c\144\x65\162" => "\105\x6e\x74\x65\162\40\x44\145\146\141\165\154\164\40\122\145\144\x69\x72\x65\143\164\x20\125\122\x4c"));
$form["\x6d\141\162\153\165\160\137\164\x6f\x70\x5f\166\x74\137\163\164\x61\162\164"] = array("\43\155\x61\162\153\165\160" => "\74\x62\162\76\74\x68\62\76\120\x61\147\145\40\122\145\163\x74\x72\151\x63\x74\151\157\x6e\x3c\x2f\150\62\76\x3c\x68\162\76\74\142\162\x3e");
if (empty($U1)) {
goto NP;
}
$form["\x6d\151\156\151\157\x72\141\x6e\147\x65\x5f\157\x61\165\164\150\137\x63\154\x69\x65\156\x74\137\x73\x65\154\x65\143\x74\145\x64\137\x61\x70\160"] = array("\x23\164\151\x74\154\x65" => t("\x53\145\x6c\145\143\x74\40\141\x6e\x20\101\x70\160\154\151\x63\141\164\151\x6f\156\40\146\x6f\x72\x20\141\x75\x74\x6f\155\141\x74\151\143\141\x6c\x6c\x79\40\162\x65\144\151\x72\x65\x63\164\151\156\x67\40\164\150\x65\x20\x75\163\x65\x72\x20\x74\x6f\x3a\40"), "\x23\x69\144" => "\x6d\151\x6e\151\x6f\162\141\156\147\x65\x5f\x6f\x61\165\x74\150\x5f\x63\154\x69\x65\156\164\x5f\x73\x65\x6c\x65\143\164\145\x64\137\x61\x70\x70", "\43\164\x79\160\x65" => "\163\x65\154\x65\x63\x74", "\x23\144\x69\x73\141\x62\x6c\145\x64" => $q7, "\x23\x64\145\163\143\162\151\x70\x74\x69\x6f\x6e" => "\123\x65\154\x65\x63\164\40\141\x6e\40\x4f\101\x75\x74\150\40\x53\145\x72\x76\x65\162", "\43\144\145\146\x61\x75\x6c\164\137\166\141\x6c\165\145" => $this->config->get("\141\x75\x74\x6f\x5f\162\145\x64\x69\x72\145\143\164\x5f\141\160\160\137\156\x61\x6d\145"), "\x23\157\160\x74\x69\157\156\x73" => $U1, "\43\x61\164\164\x72\151\x62\165\164\x65\163" => array("\x73\164\x79\x6c\145" => "\x77\151\x64\164\x68\72\67\x33\x25"), "\43\x73\164\x61\x74\145\x73" => array("\x76\x69\x73\151\x62\x6c\145" => array(array("\x3a\151\x6e\160\165\x74\x5b\156\x61\x6d\x65\40\x3d\x20\42\155\x69\156\151\x6f\162\141\x6e\147\x65\x5f\157\x61\165\x74\x68\x5f\x63\154\x69\x65\x6e\x74\137\141\x75\x74\x6f\137\x72\145\144\151\x72\x65\x63\x74\x22\135" => array("\x63\x68\x65\x63\x6b\145\144" => TRUE)), "\x6f\x72", array("\x3a\x69\156\x70\165\164\133\156\x61\x6d\145\x20\75\40\x22\x6d\151\156\x69\157\162\141\156\x67\x65\x5f\x6f\x61\165\164\150\137\x63\154\x69\145\x6e\x74\137\146\x6f\162\143\145\137\141\x75\x74\x68\x22\x5d" => array("\x63\x68\x65\143\x6b\145\x64" => TRUE)))));
goto Mk;
NP:
$form["\155\x69\156\x69\157\162\x61\x6e\x67\145\137\157\141\165\164\150\137\143\154\x69\x65\x6e\164\137\x73\x65\154\x65\143\x74\x65\144\x5f\x61\x70\x70"] = array("\43\x69\144" => "\x6d\151\x6e\x69\x6f\x72\141\156\147\145\x5f\157\x61\x75\164\150\137\143\154\x69\x65\x6e\164\x5f\163\145\154\145\143\164\145\144\137\x61\x70\160", "\x23\x6d\141\162\x6b\165\160" => "\74\144\151\x76\40\143\154\x61\x73\x73\x3d\47\155\157\x5f\x6f\141\165\164\x68\137\x68\x69\147\150\154\x69\x67\x68\x74\137\x62\x61\143\x6b\147\x72\x6f\165\x6e\x64\137\156\157\x74\145\x5f\x31\x27\x3e\xd\xa\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x3c\142\x20\143\x6c\141\x73\x73\75\47\155\157\x5f\x6e\157\164\145\x5f\x63\163\163\47\x3e\120\154\x65\x61\x73\x65\40\x4e\x6f\164\145\72\74\57\x62\x3e\40\x59\157\165\40\x6e\145\x65\144\40\x74\157\40\143\157\156\146\151\147\165\x72\145\40\x61\164\154\x65\141\x73\164\40\61\x20\x61\160\x70\x6c\x69\143\x61\x74\x69\x6f\156\40\x62\x65\146\x6f\x72\145\40\171\x6f\x75\x20\145\x6e\x61\142\154\x65\x20\141\x6e\171\40\157\x66\40\x74\x68\x65\40\x62\x65\x6c\157\x77\40\164\x68\162\x65\145\40\x63\x68\145\143\x6b\142\x6f\x78\x65\x73\56\x3c\x2f\x64\x69\x76\x3e\74\142\x72\x3e");
Mk:
$form["\x6d\x69\x6e\151\x6f\x72\141\x6e\x67\145\137\x6f\x61\165\164\x68\x5f\143\x6c\x69\145\156\x74\x5f\x66\157\162\x63\145\x5f\141\165\x74\x68"] = array("\43\164\171\160\x65" => "\x63\150\x65\143\x6b\142\x6f\170", "\x23\x69\144" => "\x6d\151\156\x69\157\x72\141\x6e\x67\145\137\x6f\141\x75\164\x68\x5f\143\x6c\151\145\x6e\x74\137\146\157\162\143\x65\x5f\x61\x75\164\150", "\43\144\x69\x73\141\142\x6c\145\144" => $q7, "\x23\x74\x69\164\154\145" => t("\120\162\157\164\145\x63\164\40\x77\x65\142\x73\x69\164\145\40\141\147\x61\151\156\x73\x74\40\141\x6e\157\x6e\171\155\x6f\165\163\x20\x61\x63\x63\x65\163\x73"), "\x23\x64\145\x66\x61\165\154\164\x5f\166\x61\154\x75\x65" => $this->config->get("\155\151\156\x69\157\x72\141\x6e\x67\145\x5f\x6f\x61\x75\164\150\x5f\143\154\151\145\x6e\x74\137\146\157\162\143\145\x5f\x61\165\x74\x68"), "\x23\x64\x65\x73\143\162\151\160\x74\151\157\x6e" => t("\x3c\x62\x3e\116\x6f\x74\145\72\40\x3c\57\142\76\x55\x73\x65\162\x73\40\x77\151\154\x6c\40\x62\x65\x20\162\145\144\151\162\145\143\x74\145\x64\x20\164\x6f\40\x79\157\x75\162\x20\117\x41\165\x74\150\40\163\145\162\x76\x65\162\x20\146\x6f\x72\40\154\x6f\147\151\156\x20\151\156\x20\x63\x61\163\145\x20\x75\x73\x65\162\40\151\x73\40\x6e\157\164\40\x6c\157\147\x67\145\x64\40\x69\x6e\x20\x61\x6e\144\x20\164\x72\151\145\x73\40\x74\x6f\x20\x61\143\143\x65\x73\x73\x20\x77\x65\x62\x73\151\x74\145\56\x3c\x62\162\x3e\74\142\x72\76"), "\43\163\164\141\x74\145\163" => array("\144\x69\163\x61\142\154\145\144" => array("\72\151\x6e\x70\x75\164\133\156\x61\155\x65\x20\x3d\x20\x22\x6d\151\x6e\x69\157\x72\141\x6e\x67\145\x5f\157\x61\165\164\x68\137\x63\154\x69\145\156\x74\x5f\x61\165\x74\x6f\137\162\145\144\151\162\145\x63\164\x22\135" => array("\x63\150\145\x63\x6b\145\144" => true))));
$form["\155\151\156\151\157\162\x61\x6e\x67\145\x5f\157\x61\x75\x74\150\x5f\163\x65\x74\137\x6f\146\137\160\141\147\145\x5f\x72\x65\163\x74\x72\151\143\x74\151\x6f\156"] = array("\x23\x74\x79\x70\145" => "\x66\x69\145\154\144\x73\145\x74", "\43\163\164\141\164\x65\163" => array("\x76\x69\163\x69\142\154\145" => array("\x3a\x69\156\x70\x75\x74\133\156\x61\155\x65\x3d\42\155\x69\156\151\157\162\141\156\147\x65\x5f\x6f\141\x75\164\x68\x5f\143\x6c\151\x65\156\x74\x5f\x66\157\162\x63\x65\x5f\x61\x75\164\150\42\x5d" => array("\143\150\145\143\153\145\144" => TRUE))));
$Gh = ["\x77\150\x69\164\145\x6c\x69\163\164\137\x70\x61\147\x65\x73" => "\x50\x61\x67\x65\163\x20\164\157\40\145\170\x63\x6c\165\x64\x65\40\146\162\157\x6d\x20\x72\145\163\164\162\x69\x63\164\x69\x6f\x6e", "\162\145\163\x74\x72\151\143\x74\137\160\x61\147\145\163" => "\x50\x61\x67\145\x73\x20\x74\157\x20\x62\x65\40\162\x65\163\x74\x72\151\x63\164\x65\144"];
$form["\x6d\151\156\151\157\162\141\156\147\x65\x5f\157\x61\x75\x74\150\x5f\163\145\164\x5f\157\146\x5f\160\141\x67\145\137\162\x65\x73\x74\x72\151\143\x74\x69\x6f\x6e"]["\x63\x68\157\x6f\163\x65\x5f\164\x79\x70\x65\137\157\146\137\160\141\x67\x65\x5f\x72\145\163\x74\162\151\x63\x74\151\x6f\156"] = array("\43\x74\171\160\145" => "\x72\x61\144\151\157\163", "\43\157\160\x74\x69\x6f\156\163" => $Gh, "\43\x61\164\x74\x72\x69\142\x75\x74\145\163" => array("\x63\154\141\x73\x73" => array("\x63\157\156\164\141\x69\156\145\162\x2d\151\156\x6c\151\156\x65")), "\43\x64\145\146\141\x75\154\x74\137\x76\141\x6c\x75\x65" => is_null($this->config->get("\x6d\x69\x6e\x69\x6f\x72\x61\x6e\x67\x65\x5f\x6f\141\x75\164\150\137\x70\x61\147\145\137\x72\145\x73\x74\x72\151\x63\164\x69\157\x6e\x5f\164\171\160\x65")) ? "\x77\150\151\x74\145\x6c\x69\x73\164\x5f\x70\x61\147\145\163" : $this->config->get("\x6d\x69\x6e\151\157\162\x61\156\147\x65\137\x6f\x61\165\x74\150\x5f\x70\141\147\x65\x5f\162\145\163\164\x72\151\x63\x74\x69\157\156\137\164\171\x70\145"));
$form["\155\x69\156\151\157\x72\x61\156\x67\145\x5f\x6f\x61\x75\164\150\x5f\163\x65\164\x5f\157\146\137\x70\141\147\x65\x5f\162\145\x73\x74\x72\x69\143\164\151\x6f\156"]["\x6d\141\162\x6b\x75\160\x5f\x64\145\x73\x63\x5f\x70\x61\147\145\137\x72\145\x73\x74\x72\x69\x63\164\x69\x6f\156"] = array("\x23\x6d\141\162\153\x75\160" => "\74\x70\x3e\x45\156\x74\x65\x72\x20\x74\x68\145\x20\74\142\76\x6c\151\156\145\40\163\x65\x70\145\x72\x61\164\x65\144\x20\162\145\x6c\x61\x74\x69\x76\x65\x20\125\x52\114\x73\74\57\x62\x3e\56\x20\106\157\x72\40\x69\156\x73\164\x61\x6e\x63\145\x2c\x20\x49\x66\x20\x74\x68\145\x20\x73\x69\164\x65\40\165\162\x6c\40\151\x73\40\74\142\x3e\150\164\164\x70\163\x3a\x2f\57\x77\x77\167\56\170\171\172\x2e\143\157\155\57\x79\x79\x79\74\x2f\x62\x3e\x20\164\x68\x65\x6e\40\x74\x68\145\x20\162\145\x6c\x61\164\151\x76\145\x20\125\x52\114\x20\x77\x6f\165\154\144\40\142\145\x20\x3c\142\x3e\57\171\171\x79\x3c\57\142\x3e\56\x20\15\xa\40\40\40\x20\x20\x20\x3c\x75\x6c\76\15\xa\x20\40\x20\40\x20\40\x20\x20\x3c\154\x69\76\x49\x66\x20\x79\157\165\40\x77\x61\x6e\164\40\x74\157\40\x72\x65\163\x74\162\x69\143\164\57\x61\x6c\x6c\157\x77\40\141\143\143\145\163\x73\x20\x74\157\40\x70\x61\x72\x74\151\143\x75\154\141\x72\x20\x3c\142\76\47\x2f\x61\142\143\57\160\161\162\x2f\x78\x79\172\x27\x3c\x2f\142\76\x20\x72\x6f\x75\164\x65\40\x74\x68\145\156\40\x75\x73\145\x20\x3c\142\x3e\x27\x2f\141\x62\143\57\x70\161\x72\x2f\x78\171\172\47\74\x2f\142\x3e\x2e\40\x3c\57\154\x69\76\15\xa\40\40\x20\40\40\x20\40\x20\x3c\154\x69\76\131\157\165\x20\141\x6c\163\157\40\150\x61\x76\x65\x20\164\150\145\x20\157\160\x74\x69\x6f\156\40\164\x6f\40\165\163\145\x20\164\x68\x65\x20\x3c\x62\76\47\52\47\x3c\57\x62\76\40\167\x69\154\144\x63\141\162\144\x20\151\x6e\40\125\122\x4c\x73\x20\164\x6f\40\x6d\x61\156\141\x67\145\40\x70\x61\x67\x65\40\x61\143\143\145\x73\x73\56\x20\x46\x6f\x72\x20\x69\x6e\x73\x74\141\x6e\x63\x65\54\40\164\x6f\40\x72\x65\163\164\x72\x69\143\164\57\x61\154\x6c\157\167\40\x61\x63\143\145\163\163\x20\x74\x6f\40\141\x6c\154\x20\162\x6f\165\x74\145\163\x20\165\156\144\x65\x72\x20\74\x62\76\47\x2f\141\142\x63\47\74\57\x62\x3e\54\40\165\163\145\40\x74\x68\x65\x20\167\x69\154\x64\x63\141\x72\144\40\125\x52\x4c\40\x3c\x62\x3e\47\57\141\142\143\57\x2a\47\74\57\x62\76\56\74\x2f\154\151\x3e\15\12\x20\40\40\40\x20\x20\x3c\x2f\x75\154\76\x3c\x2f\160\x3e");
$form["\155\x69\x6e\151\x6f\x72\141\x6e\x67\x65\137\x6f\x61\165\164\150\x5f\x73\145\164\137\x6f\146\137\160\141\x67\145\137\x72\145\163\x74\162\151\143\x74\x69\157\156"]["\155\x69\x6e\151\x6f\x72\141\x6e\147\145\137\x6f\x61\x75\x74\x68\137\x70\141\x67\x65\x5f\x77\150\x69\x74\x65\154\x69\163\x74\x5f\x75\162\x6c\x73"] = array("\x23\x74\171\x70\145" => "\164\x65\170\164\141\x72\x65\x61", "\x23\x74\151\x74\x6c\x65" => t("\x50\141\147\145\x73\40\x74\157\40\145\x78\143\x6c\165\144\x65\x20\x66\162\157\155\x20\x61\165\x74\x6f\x2d\162\x65\144\151\x72\145\x63\164\x20\x74\x6f\40\117\x41\165\x74\150\40\120\x72\x6f\166\x69\144\x65\162\x20\x66\x6f\x72\x20\x61\x6e\157\156\171\155\157\165\163\x20\x75\163\145\162\163"), "\43\141\164\x74\162\151\142\165\164\x65\x73" => array("\163\164\171\x6c\x65" => "\x77\x69\144\x74\150\x3a\66\64\60\160\170\73\x68\145\151\147\150\164\72\70\60\x70\x78\73\x20\142\x61\143\153\147\x72\157\x75\156\x64\55\x63\157\x6c\x6f\162\x3a\40\x68\x73\154\x61\50\x30\x2c\x30\x25\x2c\60\x25\54\x30\x2e\x30\x38\51\40\x21\x69\x6d\x70\x6f\162\x74\x61\x6e\164", "\160\154\x61\143\x65\150\157\154\144\x65\162" => "\105\156\x74\x65\x72\40\x74\150\x65\40\x6c\x69\x73\x74\x20\x6f\x66\x20\x73\145\x6d\151\x63\x6f\154\x6f\156\40\x73\x65\160\141\162\141\x74\145\x64\40\x72\x65\154\x61\164\x69\166\x65\x20\125\x52\x4c\163\x20\x6f\146\x20\x79\157\165\x72\40\x70\141\x67\145\163\40\x69\156\x20\164\150\145\x20\164\145\x78\x74\x61\x72\145\141\x2e"), "\x23\x64\x65\163\143\x72\x69\160\164\x69\x6f\156" => t("\74\x62\x3e\x4e\157\x74\x65\72\46\156\x62\163\160\73\x3c\57\142\x3e\125\x73\145\162\163\40\x63\141\156\x20\141\143\x63\x65\163\163\40\164\x68\x65\x73\x65\40\x70\x61\x67\x65\163\40\x61\x6e\157\x6e\x79\155\157\x75\163\154\171\56\74\142\x3e\x26\x6e\x62\163\160\73\x4b\145\145\x70\40\164\150\151\x73\x20\164\x65\170\x74\x61\x72\145\141\40\x65\155\x70\x74\171\40\151\146\x20\171\x6f\165\40\167\141\x6e\x74\40\164\157\x20\162\145\163\164\162\x69\143\x74\x20\141\x6c\154\x20\160\141\x67\145\x73\x20\x6f\x66\x20\x79\157\165\162\40\x73\151\x74\x65\74\57\142\76"), "\x23\144\x69\163\141\142\154\x65\144" => $q7, "\x23\x72\x65\x73\x69\x7a\x61\x62\x6c\x65" => FALSE, "\43\x64\x65\x66\x61\x75\x6c\164\137\x76\x61\x6c\165\x65" => !empty($this->config->get("\x6d\151\156\x69\157\x72\x61\156\147\145\x5f\x6f\x61\165\164\150\137\x70\141\x67\145\137\x72\145\x73\x74\x72\x69\x63\x74\x69\157\156\137\167\150\151\x74\145\x6c\x69\163\164\x65\x64\137\x70\141\x67\x65\163")) ? implode("\xa", explode("\73", $this->config->get("\x6d\151\x6e\151\157\x72\x61\156\x67\145\137\x6f\141\165\x74\150\137\x70\x61\147\145\x5f\162\x65\x73\164\162\x69\143\164\151\157\x6e\137\167\150\x69\164\145\x6c\x69\x73\x74\x65\x64\137\x70\141\147\145\163"))) : '', "\x23\x73\164\x61\164\x65\x73" => array("\166\x69\x73\x69\142\x6c\145" => array("\72\x69\x6e\160\165\164\x5b\x6e\141\x6d\145\75\x22\x63\x68\x6f\x6f\x73\145\x5f\164\x79\160\145\137\157\146\137\x70\x61\x67\x65\x5f\x72\145\163\x74\162\151\143\x74\x69\157\x6e\x22\135" => array("\166\x61\154\165\145" => "\167\x68\151\164\x65\154\151\x73\164\x5f\x70\141\147\145\163"))), "\43\163\165\146\146\x69\170" => "\74\x62\x72\x3e");
$form["\x6d\x69\156\x69\157\x72\x61\x6e\x67\x65\x5f\157\141\x75\164\150\x5f\163\145\x74\137\157\x66\x5f\x70\141\147\x65\x5f\162\145\163\164\162\x69\143\x74\151\x6f\x6e"]["\x6d\x69\156\x69\x6f\162\141\156\147\x65\x5f\x6f\141\x75\x74\150\137\x70\141\x67\x65\x5f\162\x65\163\x74\162\151\143\164\x5f\165\x72\x6c\163"] = array("\x23\x74\x79\160\x65" => "\164\145\170\164\x61\162\145\x61", "\43\164\x69\164\x6c\x65" => t("\x50\x61\x67\x65\x73\163\40\x74\157\40\x62\x65\x20\162\x65\163\164\162\x69\x63\164\145\x64"), "\43\x61\x74\164\162\x69\x62\x75\x74\x65\x73" => array("\x73\x74\171\154\145" => "\x77\151\144\x74\150\x3a\66\64\60\x70\170\73\150\145\151\147\150\x74\x3a\70\60\160\170\73\40\142\x61\143\x6b\x67\162\157\x75\x6e\x64\x2d\143\x6f\x6c\157\162\72\40\150\x73\154\141\x28\x30\x2c\x30\45\x2c\60\x25\x2c\x30\x2e\x30\x38\x29\40\x21\151\x6d\x70\157\162\x74\141\156\x74", "\x70\154\141\143\x65\x68\x6f\154\144\x65\x72" => "\x45\156\164\145\x72\40\164\150\145\x20\x6c\x69\x73\164\40\x6f\x66\x20\x73\145\x6d\x69\143\157\154\157\x6e\x20\x73\x65\x70\x61\162\141\x74\145\x64\x20\x72\145\x6c\x61\164\151\x76\x65\40\x55\x52\x4c\163\x20\157\x66\40\171\157\x75\x72\40\160\x61\147\x65\x73\40\x69\156\x20\164\150\145\x20\164\145\170\x74\141\162\x65\141\x2e"), "\43\x64\x65\x73\x63\x72\x69\160\x74\151\157\x6e" => t("\x3c\142\76\x4e\157\x74\145\x3a\46\x6e\142\x73\160\x3b\x3c\57\142\76\x55\x73\145\x72\163\40\167\x69\x6c\x6c\40\x62\145\40\162\x65\144\x69\x72\145\x63\x74\x65\144\x20\x74\x6f\40\171\157\x75\162\x20\117\x41\165\x74\x68\x20\x53\145\162\166\x65\x72\40\146\x6f\x72\x20\154\x6f\147\151\x6e\x20\167\x68\145\x6e\40\164\150\145\40\162\x65\x73\x74\x72\151\143\x74\145\x64\40\160\141\147\x65\40\x69\x73\x20\141\x63\x63\145\163\x73\x65\144\x2e\x3c\x62\76\x26\156\142\163\160\73\117\x6e\x6c\x79\x20\164\150\145\163\x65\40\x70\141\147\145\x73\x20\x77\151\154\x6c\x20\142\x65\x20\162\x65\x73\164\162\151\x63\164\x65\144\x20\x61\x6e\x64\40\x61\154\x6c\x20\x6f\x74\150\145\162\40\160\x61\147\145\x73\40\x63\141\x6e\x20\142\x65\x20\141\x63\143\x65\x73\x73\x65\x64\40\141\156\157\x6e\171\155\157\165\x73\x6c\171\74\x2f\142\x3e"), "\43\144\x69\163\x61\142\154\145\144" => $q7, "\43\x72\x65\163\x69\172\141\x62\x6c\145" => FALSE, "\43\x64\145\x66\x61\165\154\164\x5f\x76\x61\x6c\x75\x65" => !empty($this->config->get("\x6d\151\x6e\x69\157\162\141\x6e\147\x65\x5f\x6f\x61\x75\164\x68\137\x70\141\x67\x65\x5f\162\145\163\164\x72\x69\143\164\x69\157\156\x5f\x72\145\x73\x74\162\x69\x63\x74\x65\144\137\160\141\x67\145\x73")) ? implode("\12", explode("\73", $this->config->get("\x6d\151\x6e\151\x6f\x72\141\156\147\x65\x5f\x6f\141\x75\x74\x68\x5f\160\x61\147\145\137\162\145\x73\x74\162\151\143\x74\151\157\x6e\x5f\x72\145\163\164\162\151\x63\x74\145\x64\137\x70\141\147\x65\163"))) : '', "\x23\x73\164\x61\164\x65\x73" => array("\x76\151\x73\151\142\x6c\x65" => array("\x3a\151\x6e\x70\165\164\133\x6e\141\155\x65\x3d\x22\143\x68\x6f\x6f\163\145\x5f\164\x79\160\145\137\157\146\x5f\x70\141\x67\x65\137\162\x65\x73\x74\162\151\x63\164\151\x6f\156\x22\x5d" => array("\x76\x61\154\x75\145" => "\x72\145\163\x74\x72\x69\143\164\137\x70\x61\147\x65\x73"))), "\x23\x73\165\x66\146\x69\x78" => "\74\x62\162\x3e");
$form["\x6d\151\156\151\157\162\x61\x6e\147\145\137\157\141\165\164\150\137\x63\x6c\151\145\156\164\137\x61\x75\164\x6f\137\x72\145\144\151\162\145\143\164"] = array("\43\164\171\x70\x65" => "\x63\150\145\x63\x6b\142\x6f\170", "\x23\x69\x64" => "\155\x69\x6e\151\x6f\162\141\156\147\x65\x5f\x6f\x61\x75\164\x68\x5f\143\154\151\145\x6e\164\x5f\x61\165\164\x6f\x5f\162\x65\x64\151\162\145\x63\164", "\x23\x64\151\163\x61\142\154\145\144" => $q7, "\x23\x74\151\164\154\x65" => t("\103\x68\x65\x63\153\x20\164\150\x69\163\x20\157\x70\164\x69\157\x6e\x20\x69\146\40\171\x6f\x75\x20\167\x61\156\x74\x20\164\157\x20\74\x62\76\x61\165\x74\157\x20\162\x65\144\x69\x72\x65\143\164\40\x74\x68\145\x20\x75\163\x65\x72\40\x74\x6f\x20\117\x41\x75\x74\x68\x20\123\x65\162\166\x65\x72\74\57\142\76"), "\43\x64\145\146\141\x75\154\164\137\166\141\x6c\165\145" => $this->config->get("\x6d\151\x6e\x69\157\x72\141\156\x67\145\x5f\x6f\x61\x75\164\x68\x5f\143\x6c\151\145\156\x74\137\141\x75\x74\157\x5f\x72\x65\x64\151\162\x65\143\x74\137\x74\157\x5f\151\144\160"), "\43\144\x65\x73\x63\x72\151\160\x74\151\x6f\x6e" => t("\x3c\142\x3e\116\x6f\164\145\72\x20\74\57\x62\76\125\x73\x65\x72\163\40\167\151\x6c\154\x20\x62\x65\40\162\x65\x64\151\162\145\143\x74\145\x64\x20\164\157\40\171\x6f\165\162\x20\117\101\165\x74\150\x20\163\x65\x72\166\145\x72\x20\146\x6f\x72\40\x6c\157\147\151\156\40\167\x68\145\156\x20\164\150\x65\x20\x6c\157\147\x69\156\x20\160\x61\147\x65\40\151\x73\40\x61\x63\143\145\163\x73\x65\144\56\x3c\x62\162\x3e\x3c\x62\x72\76"), "\x23\x73\x74\x61\164\145\163" => array("\144\151\x73\x61\x62\154\145\144" => array("\x3a\x69\156\x70\165\x74\133\156\141\155\145\x20\x3d\x20\x22\x6d\x69\x6e\x69\157\162\x61\156\147\145\x5f\157\x61\165\164\150\x5f\143\x6c\151\145\156\164\137\x66\157\x72\143\x65\x5f\141\x75\164\x68\x22\x5d" => array("\143\x68\145\143\153\145\x64" => true))));
$form["\155\151\x6e\151\x6f\162\x61\156\147\x65\137\157\x61\165\164\x68\137\x63\x6c\151\145\x6e\x74\137\x65\x6e\x61\x62\x6c\145\137\160\x61\147\145\137\x61\x63\x63\x65\x73\x73"] = array("\x23\x74\171\160\145" => "\143\150\x65\143\x6b\x62\157\x78", "\43\x64\151\163\141\142\154\x65\x64" => $q7, "\43\164\151\164\154\x65" => t("\x43\x68\x65\x63\x6b\x20\164\x68\151\x73\40\x6f\160\x74\x69\157\x6e\40\151\146\40\171\157\x75\x20\167\x61\156\x74\x20\164\x6f\x20\x65\x6e\141\x62\154\x65\x20\74\142\76\160\141\147\x65\x20\141\x63\x63\145\x73\x73\x3c\57\142\76"), "\x23\x64\145\x66\x61\x75\x6c\x74\x5f\166\141\x6c\165\x65" => $this->config->get("\155\x69\156\x69\x6f\162\141\x6e\x67\x65\x5f\x6f\141\165\x74\x68\x5f\x63\154\151\145\156\x74\137\145\156\x61\142\154\145\x5f\x70\x61\x67\x65\x5f\141\x63\x63\x65\x73\163"), "\x23\144\145\x73\x63\162\x69\x70\164\x69\x6f\x6e" => t("\74\142\x3e\116\157\164\x65\x3a\x20\74\57\x62\x3e\x20\103\x68\x65\x63\153\x69\156\x67\x20\x74\x68\151\x73\40\x6f\160\x74\x69\x6f\156\40\x77\151\x6c\154\40\x65\156\141\x62\x6c\x65\40\x74\150\x65\40\x75\163\x65\162\x20\164\157\x20\166\151\x73\151\164\40\141\156\x79\x20\x70\x61\x67\x65\x20\x64\145\x73\160\x69\164\145\40\x6f\x66\x20\164\x68\145\x20\162\x65\x64\151\x72\145\x63\x74\x69\x6f\156\40\164\x6f\x20\117\101\165\x74\x68\x20\x53\145\x72\x76\x65\162\x20\163\x65\x74\164\151\x6e\147\163\40\50\x61\x62\157\166\145\x20\164\x77\x6f\x29\40\141\162\145\40\x65\156\x61\142\154\x65\x64\x2e\x3c\57\x62\x3e\x3c\142\x72\x2f\x3e\x20\x3c\160\40\x63\154\x61\163\x73\x3d\x22\x6d\157\137\157\x61\165\164\150\137\x68\x69\x67\x68\154\x69\x67\150\x74\x5f\142\141\x63\x6b\147\x72\157\x75\156\144\137\156\x6f\x74\145\x5f\x31\x22\76\x20\x3c\x62\x3e\120\165\x74\x20\x3c\57\x62\x3e\x20\x3c\141\76\x3f\163\x74\x6f\x70\x5f\x72\145\144\x69\162\145\143\x74\75\164\x72\165\145\x3c\x2f\x61\x3e\x20\x61\x66\164\x65\x72\40\x74\x68\x65\40\x70\141\x67\x65\x20\165\x72\154\x2e\x3c\57\x70\76\40\74\142\162\57\x3e"), "\43\x73\x74\141\164\145\163" => array("\x76\x69\163\x69\142\154\145" => array(array("\72\151\156\x70\165\164\133\x6e\x61\x6d\145\75\x22\x6d\151\156\151\x6f\162\x61\156\147\x65\137\157\x61\165\164\x68\x5f\143\x6c\151\x65\156\164\137\x66\157\162\143\x65\x5f\x61\x75\x74\x68\42\135" => array("\143\x68\145\143\x6b\145\144" => TRUE)), "\x6f\162", array("\x3a\x69\156\160\x75\164\133\156\x61\155\x65\75\x22\x6d\151\156\x69\x6f\162\x61\156\x67\145\x5f\x6f\141\x75\x74\150\137\x63\x6c\x69\145\x6e\x74\137\x61\x75\164\x6f\x5f\162\145\x64\x69\x72\x65\x63\x74\42\x5d" => array("\143\150\145\x63\x6b\x65\x64" => TRUE)))));
global $base_url;
$sS = $this->config->get("\155\x69\x6e\x69\157\x72\141\x6e\x67\145\x5f\x6f\x61\165\164\x68\137\143\x6c\151\x65\x6e\164\137\142\141\163\145\x5f\x75\162\154");
if (!empty($sS)) {
goto Zz;
}
$sS = $base_url;
Zz:
$form["\155\x69\156\x69\x6f\x72\141\x6e\147\145\137\x6f\x61\165\164\x68\137\143\x6c\x69\145\156\164\137\x65\156\141\142\154\x65\x5f\x62\x61\x63\x6b\144\x6f\x6f\162"] = array("\43\x74\171\x70\145" => "\143\150\145\143\x6b\142\x6f\x78", "\43\x64\151\x73\141\142\x6c\145\144" => $q7, "\x23\x74\151\164\154\145" => t("\x43\x68\145\x63\x6b\x20\x74\150\x69\x73\40\157\x70\164\x69\157\156\40\x69\146\x20\171\x6f\165\x20\167\141\x6e\x74\40\164\157\x20\145\156\x61\x62\x6c\145\40\74\142\76\142\141\143\x6b\144\157\x6f\x72\x20\154\157\x67\151\x6e\74\57\x62\76"), "\43\x64\x65\146\141\x75\154\x74\137\166\141\x6c\x75\145" => is_null($this->config->get("\155\x69\156\x69\157\162\141\x6e\x67\x65\137\x6f\x61\165\x74\150\137\143\x6c\x69\x65\156\x74\x5f\145\x6e\x61\x62\x6c\145\137\142\x61\x63\x6b\144\x6f\157\162")) ? true : $this->config->get("\155\151\x6e\151\x6f\162\x61\156\x67\145\137\157\x61\x75\164\150\137\x63\x6c\151\x65\x6e\164\137\x65\156\141\142\x6c\145\x5f\x62\x61\143\153\x64\x6f\x6f\162"), "\43\x64\x65\163\x63\x72\x69\x70\164\151\x6f\156" => t("\x3c\x62\76\x4e\157\164\x65\x3a\40\74\57\142\76\x20\x43\x68\145\143\153\151\156\147\x20\x74\150\x69\163\40\x6f\160\164\151\157\x6e\x20\x3c\142\76\143\x72\145\x61\x74\x65\x73\40\141\x20\x62\141\x63\153\144\x6f\x6f\162\40\x74\157\x20\154\157\147\x69\x6e\40\164\x6f\40\x79\157\x75\x72\x20\127\145\x62\x73\x69\x74\145\x20\x75\x73\151\x6e\x67\x20\104\162\x75\x70\x61\154\x20\143\162\145\144\x65\x6e\164\151\141\154\x73\x3c\x2f\x62\76\x20\x69\x6e\x63\x61\x73\145\40\x79\157\x75\x20\x67\x65\164\40\154\x6f\x63\153\x65\144\x20\x6f\165\164\x20\157\146\40\x79\x6f\x75\162\40\x4f\101\165\164\150\x20\163\145\162\166\145\x72\x2e\x20\x3c\142\x3e\120\x6c\x65\x61\163\145\40\156\x6f\x74\145\40\144\x6f\x77\x6e\40\146\x6f\x6c\x6c\157\167\151\156\147\x20\x55\x52\114\56\74\x2f\142\x3e"), "\43\x73\164\x61\x74\145\x73" => array("\x63\150\145\143\153\x65\x64" => array(array("\x3a\151\156\160\165\164\133\x6e\x61\x6d\x65\x20\x3d\40\42\155\151\x6e\x69\157\162\141\x6e\147\145\x5f\157\x61\165\164\150\137\143\x6c\x69\x65\x6e\x74\137\141\165\x74\x6f\x5f\x72\x65\144\x69\162\145\143\x74\42\135" => array("\143\150\145\x63\153\x65\144" => TRUE)), "\157\x72", array("\x3a\151\x6e\160\165\x74\133\x6e\141\x6d\145\40\75\x20\x22\x6d\x69\x6e\151\157\x72\141\x6e\x67\145\137\157\141\165\x74\x68\x5f\143\x6c\x69\145\156\164\137\x66\157\x72\143\x65\x5f\141\165\x74\x68\42\135" => array("\143\150\145\143\x6b\x65\x64" => TRUE)))));
$dC = $q7;
$form["\x6d\x61\162\x6b\x75\160\x5f\64"] = array("\x23\x6d\x61\162\x6b\x75\x70" => "\74\x70\x20\x63\x6c\141\x73\x73\75\x22\155\157\x5f\x6f\141\165\164\150\x5f\150\x69\147\150\x6c\151\147\150\164\137\x62\x61\x63\x6b\147\162\157\x75\156\144\x5f\156\x6f\x74\x65\x5f\61\x22\x3e\x3c\142\76\x42\x61\x63\x6b\144\157\x6f\x72\x20\125\122\114\72\x20\x3c\x61\40\150\151\144\x64\145\x6e\x3d" . $dC . "\76\x3c\x63\157\144\145\x3e" . $sS . "\x2f\x75\x73\145\x72\x2f\x6c\x6f\x67\x69\156\x3f\x6f\141\165\164\x68\x5f\143\154\151\145\156\164\x5f\x6c\x6f\x67\151\x6e\x3d\x66\x61\154\x73\x65\x3c\x2f\x63\x6f\144\145\76\74\x2f\x61\x3e\74\x2f\142\76\74\x2f\160\76\74\x62\162\x3e");
$form["\144\157\x6d\x61\x69\x6e\x5f\x62\x61\163\145\x64\137\x72\145\163\x74\x72\151\143\x74\151\x6f\x6e"] = array("\43\155\x61\x72\153\x75\160" => "\74\x62\162\x3e\74\150\62\x3e\104\x6f\155\141\151\x6e\x20\122\145\163\164\x72\x69\x63\164\151\157\x6e\x3c\x2f\x68\x32\76\x3c\150\x72\x3e");
$form["\x6d\x69\x6e\x69\x6f\162\141\156\147\x65\x5f\x6f\141\165\x74\x68\x5f\144\x6f\155\x61\151\x6e\x5f\x72\145\x73\164\x72\151\143\x74\x69\x6f\156\x5f\x63\x68\x65\143\x6b\x62\x6f\x78"] = array("\43\x74\x79\160\145" => "\x63\x68\x65\143\153\142\157\170", "\43\164\x69\x74\154\x65" => t("\x43\150\145\143\153\40\164\150\x69\x73\x20\157\x70\x74\x69\x6f\156\40\151\x66\x20\x79\x6f\165\x20\x77\x61\x6e\164\x20\74\142\76\40\104\x6f\x6d\x61\x69\156\40\122\145\163\164\162\151\x63\x74\151\157\156\74\x2f\142\76"), "\43\144\151\x73\x61\x62\154\x65\x64" => $q7, "\43\144\x65\146\x61\165\154\x74\x5f\166\141\154\x75\x65" => $this->config->get("\x6d\151\x6e\x69\x6f\x72\141\x6e\x67\x65\x5f\157\x61\165\x74\x68\137\145\156\141\142\154\x65\x5f\x64\x6f\155\x61\x69\x6e\x5f\162\x65\x73\164\162\x69\x63\164\x69\157\156"));
$form["\x6d\151\x6e\151\157\162\x61\x6e\x67\145\x5f\157\x61\165\164\x68\x5f\x73\x65\x74\137\x6f\x66\137\x72\x61\x64\x69\x6f\142\165\x74\164\x6f\x6e\163"] = array("\x23\x74\x79\160\145" => "\146\x69\145\154\144\163\x65\x74", "\x23\x73\x74\141\164\145\163" => array("\x76\x69\x73\151\142\154\x65" => array("\72\151\x6e\x70\x75\x74\x5b\x6e\x61\155\x65\75\x22\155\x69\156\151\x6f\162\x61\x6e\147\145\x5f\x6f\141\x75\x74\x68\x5f\x64\x6f\155\x61\x69\x6e\137\x72\145\163\x74\162\151\143\164\151\x6f\156\137\143\150\145\143\x6b\x62\157\x78\42\135" => array("\143\150\145\143\x6b\145\144" => TRUE))));
$form["\x6d\x69\x6e\151\157\x72\141\156\x67\x65\x5f\157\141\x75\x74\150\x5f\163\145\164\137\157\x66\137\x72\x61\144\151\x6f\142\165\164\164\157\x6e\x73"]["\155\x69\156\151\157\x72\x61\156\147\145\x5f\157\141\x75\164\150\x5f\x61\x6c\x6c\157\x77\137\157\x72\137\x62\x6c\157\143\x6b\x5f\x64\x6f\x6d\x61\x69\x6e\x73"] = array("\43\164\x79\x70\x65" => "\162\x61\144\x69\157\163", "\43\x6d\141\x78\x6c\x65\x6e\147\x74\150" => 5, "\43\x6f\x70\164\151\x6f\x6e\x73" => array("\x77\150\151\164\145" => "\x49\x20\x77\x61\156\164\40\x74\x6f\x20\141\154\154\x6f\167\40\x6f\156\154\x79\40\163\157\155\145\40\x6f\x66\40\x74\150\145\x20\x64\157\155\x61\151\156\163", "\142\x6c\141\143\x6b" => "\111\x20\167\x61\156\x74\x20\164\157\x20\x62\x6c\x6f\x63\x6b\x20\x73\x6f\155\x65\40\x6f\146\40\x74\x68\145\40\144\x6f\x6d\141\151\156\x73"), "\43\144\145\x66\141\x75\x6c\164\x5f\x76\x61\154\165\145" => is_null($this->config->get("\x6d\x69\156\151\157\162\x61\x6e\147\x65\x5f\157\x61\165\x74\150\137\x64\157\155\x61\151\156\x73\x5f\x61\162\145\x5f\167\150\x69\164\145\137\157\x72\137\142\154\x61\143\153")) ? "\x77\x68\x69\x74\x65" : $this->config->get("\155\151\x6e\151\x6f\x72\x61\x6e\x67\x65\x5f\x6f\141\165\x74\150\x5f\x64\157\x6d\141\x69\156\163\137\141\162\145\137\167\150\151\x74\145\137\157\162\x5f\x62\x6c\141\143\153"), "\43\x64\x69\x73\x61\x62\x6c\145\x64" => $q7);
$form["\x6d\151\x6e\151\157\162\141\156\x67\145\x5f\x6f\141\165\164\150\x5f\163\x65\x74\x5f\x6f\x66\x5f\162\141\x64\151\157\142\x75\164\x74\157\x6e\163"]["\x6d\x69\156\151\157\x72\x61\x6e\147\x65\x5f\x6f\141\165\x74\150\137\x64\157\155\141\151\x6e\163"] = array("\x23\164\171\160\x65" => "\x74\x65\x78\x74\141\162\145\141", "\43\164\151\164\154\145" => t("\x45\x6e\x74\145\x72\x20\154\151\x73\164\x20\157\x66\x20\x64\x6f\155\x61\151\x6e\163"), "\43\x61\x74\x74\x72\x69\142\165\x74\145\x73" => array("\163\x74\171\x6c\145" => "\x77\x69\144\164\150\x3a\65\x38\60\x70\x78\73\x68\145\151\x67\150\164\72\x38\x30\x70\x78\x3b\x20\142\141\143\x6b\x67\x72\x6f\165\156\144\55\x63\157\x6c\157\x72\x3a\40\x68\163\x6c\141\x28\x30\x2c\x30\45\54\60\45\54\60\56\x30\x38\51\x20\x21\151\x6d\160\x6f\x72\x74\x61\x6e\x74", "\x70\x6c\141\x63\145\x68\x6f\x6c\x64\x65\162" => "\105\x6e\164\x65\162\40\163\x65\155\x69\x63\157\154\157\x6e\x28\73\51\x20\163\x65\160\141\x72\x61\x74\145\144\x20\144\x6f\x6d\x61\151\156\x73\40\50\105\x67\56\x20\x78\170\x78\x78\56\143\x6f\x6d\x3b\x20\x78\170\x78\170\x2e\143\x6f\x6d\51"), "\43\144\151\163\141\142\154\145\144" => $q7, "\x23\x64\145\146\141\165\x6c\164\x5f\166\141\154\165\x65" => is_null($this->config->get("\155\x69\x6e\151\x6f\162\141\156\x67\x65\137\x6f\x61\165\164\x68\137\144\157\155\141\x69\x6e\x73")) ? '' : $this->config->get("\x6d\151\156\151\157\x72\x61\x6e\x67\145\x5f\157\141\165\164\150\x5f\x64\x6f\155\x61\151\x6e\x73"), "\43\x73\165\x66\146\x69\170" => "\74\142\x72\x3e");
$form["\155\151\x6e\x69\x6f\162\141\156\x67\145\137\x6f\x61\x75\x74\150\137\x72\x65\161\x75\151\x72\x65\x5f\160\x72\157\146\x69\154\x65\137\146\151\145\x6c\144"] = array("\x23\x70\x72\145\x66\x69\x78" => "\x3c\142\x72\x3e", "\43\x74\171\160\x65" => "\x63\150\x65\143\153\142\x6f\170", "\x23\x64\151\163\x61\142\x6c\145\x64" => $q7, "\43\164\151\x74\x6c\x65" => t("\x3c\142\x3e\x45\x6e\x61\x62\x6c\145\40\x74\x68\151\x73\x20\143\x68\145\143\x6b\142\x6f\x78\40\x74\157\x20\x6d\x61\x6b\x65\x20\x73\x65\154\x65\143\164\145\x64\x20\x75\163\x65\x72\40\x70\162\x6f\146\x69\154\145\40\x61\164\164\162\x69\x62\x75\164\x65\163\40\162\145\161\165\x69\162\x65\x64\56\x3c\x2f\142\x3e"), "\43\144\x65\146\141\x75\x6c\164\137\166\x61\x6c\x75\x65" => $this->config->get("\x6d\151\x6e\151\x6f\162\141\156\x67\145\x5f\157\x61\165\164\x68\x5f\x72\145\x71\x75\x69\162\x65\x5f\160\x72\x6f\146\151\154\145\137\146\151\x65\x6c\x64"));
$form["\x6d\151\x6e\151\x6f\x72\x61\156\147\145\137\x6f\141\165\x74\150\137\162\145\x71\165\151\x72\x65\144\x5f\165\x73\145\x72\x5f\x70\x72\x6f\x66\x69\154\145\137\141\164\x74\x72\151\142\x75\x74\145\163"] = array("\43\164\171\160\145" => "\x74\x65\170\164\x61\162\x65\141", "\43\x64\x69\163\141\x62\x6c\x65\x64" => $q7, "\x23\144\x65\146\x61\x75\154\x74\137\x76\x61\154\165\145" => $this->config->get("\x6d\151\156\x69\x6f\162\141\x6e\x67\145\x5f\157\141\x75\164\150\x5f\162\x65\x71\165\x69\162\x65\x64\137\165\163\145\x72\x5f\160\162\x6f\x66\151\x6c\145\x5f\141\164\164\x72\x69\142\x75\x74\145\x73"), "\x23\x64\145\163\x63\x72\x69\x70\164\x69\x6f\156" => "\74\x62\x3e\116\x6f\x74\145\x3a\x20\x3c\57\x62\76\x41\x73\x20\163\157\157\156\40\141\163\40\x75\163\145\x72\40\147\x65\x74\x20\x63\162\x65\141\164\145\x64\x20\x61\x66\x74\x65\x72\40\x66\151\x72\x73\164\x20\x53\x53\x4f\54\40\x68\x65\x20\167\x69\x6c\154\x20\142\145\40\162\145\x64\x69\x72\x65\x63\x74\145\144\x20\x74\x6f\x20\x74\x68\145\40\165\163\x65\x72\x20\x70\x72\x6f\x66\151\x6c\x65\40\160\x61\147\145\40\x74\157\x20\x65\156\x74\x65\162\40\155\141\156\x64\141\x74\x6f\x72\171\x20\146\x69\x65\x6c\144\163\56", "\43\141\164\x74\162\151\x62\x75\164\145\163" => array("\x70\x6c\141\143\x65\150\x6f\x6c\144\x65\162" => "\x45\156\x74\145\162\40\x73\145\x6d\x69\143\x6f\x6c\157\x6e\x28\x3b\x29\40\163\x65\160\x61\162\x61\x74\x65\x64\40\160\x72\157\146\x69\x6c\145\40\141\164\x74\162\x69\142\x75\164\145\40\155\x61\143\x68\151\x6e\x65\40\x6e\x61\x6d\x65\163\x20\x74\x68\x61\164\x20\171\x6f\x75\40\x77\x61\x6e\164\x20\164\157\x20\155\141\x6b\145\40\155\x61\156\144\141\x74\x6f\x72\171\x2e"), "\43\163\x74\141\x74\x65\163" => array("\166\151\x73\x69\142\154\145" => array("\72\x69\x6e\160\165\164\133\156\141\x6d\x65\75\x22\155\151\156\151\x6f\162\141\156\x67\x65\137\x6f\141\x75\x74\x68\x5f\x72\x65\x71\x75\x69\x72\x65\x5f\160\x72\157\x66\x69\x6c\x65\137\x66\x69\x65\154\144\x22\x5d" => array("\x63\x68\x65\143\153\145\x64" => TRUE))));
$form["\155\151\x6e\151\157\162\141\x6e\147\x65\137\157\x61\x75\x74\x68\x5f\x64\151\163\141\x62\154\x65\137\160\162\x6f\146\151\x6c\x65\137\x66\151\x65\x6c\144"] = array("\43\164\x79\x70\x65" => "\143\x68\x65\x63\x6b\x62\x6f\170", "\43\144\x69\163\141\x62\154\145\x64" => $q7, "\x23\x74\x69\x74\x6c\x65" => t("\x3c\x62\x3e\x45\156\141\x62\154\x65\x20\164\150\x69\x73\40\143\150\x65\143\153\x62\157\x78\x20\x74\157\40\144\151\163\x61\142\154\145\40\165\x73\145\162\x73\40\160\x72\x6f\146\151\154\145\x20\x61\164\164\x72\x69\142\x75\x74\145\40\146\x69\x65\154\x64\x73\56\x3c\x2f\142\76"), "\43\144\x65\x66\141\165\154\x74\x5f\166\141\x6c\x75\x65" => $this->config->get("\x6d\151\x6e\x69\157\x72\141\156\x67\x65\137\157\141\x75\164\150\x5f\144\151\163\141\142\x6c\x65\x5f\160\x72\157\x66\151\154\x65\x5f\146\151\145\154\x64"));
$form["\155\151\x6e\x69\157\x72\x61\156\147\x65\137\157\x61\x75\164\150\x5f\141\x75\164\157\x5f\x64\x69\x73\x61\142\x6c\145\137\x66\151\145\x6c\x64\x73\145\x74"] = array("\x23\164\171\160\145" => "\x66\x69\145\x6c\144\163\145\164", "\x23\163\164\141\164\145\163" => array("\166\151\x73\x69\x62\x6c\145" => array("\x3a\x69\156\x70\165\164\x5b\x6e\141\155\x65\x3d\x22\155\x69\156\151\x6f\x72\x61\x6e\147\x65\137\x6f\141\x75\164\150\x5f\144\x69\163\141\142\154\x65\137\x70\162\x6f\x66\151\x6c\x65\137\x66\x69\x65\154\144\x22\135" => array("\143\x68\145\143\x6b\145\144" => TRUE))));
$form["\155\x69\156\x69\157\x72\141\156\147\145\x5f\x6f\x61\165\x74\x68\137\141\x75\164\157\137\144\x69\x73\141\x62\154\145\137\146\151\145\x6c\144\x73\x65\x74"]["\x6d\x69\156\x69\157\162\141\x6e\147\145\x5f\x6f\141\x75\x74\150\137\144\151\x73\x61\142\154\x65\137\165\163\x65\x72\x5f\x70\162\x6f\146\151\x6c\x65\137\141\164\x74\162\151\142\165\164\145\x73"] = array("\43\x74\171\160\145" => "\164\145\x78\x74\141\162\145\x61", "\x23\x74\x69\x74\x6c\x65" => t("\105\x6e\164\145\x72\40\163\145\x6d\151\x63\x6f\x6c\157\x6e\x28\x3b\51\x20\163\145\x70\x61\162\x61\164\x65\144\x20\160\162\x6f\146\151\x6c\x65\40\x61\x74\x74\x72\x69\142\x75\x74\x65\x20\x6d\x61\x63\150\151\x6e\145\x20\156\141\155\145\x73\x20\164\x68\x61\x74\x20\x79\x6f\x75\40\x64\151\163\x61\x62\154\145\56"), "\43\144\x69\163\141\142\x6c\145\144" => $q7, "\x23\x64\x65\146\141\165\x6c\164\137\x76\x61\154\x75\145" => $this->config->get("\155\x69\156\x69\157\x72\141\156\x67\145\x5f\157\141\165\164\x68\137\144\x69\x73\x61\142\x6c\145\137\x75\163\145\x72\x5f\x70\x72\x6f\146\x69\x6c\x65\137\141\x74\164\162\151\x62\165\164\x65\x73"), "\43\144\145\x73\x63\x72\x69\x70\164\151\x6f\x6e" => "\x3c\x62\76\116\157\164\145\72\40\74\57\x62\76\x54\x68\x65\x20\x75\163\x65\162\163\40\x77\x6f\165\154\144\x20\156\x6f\164\x20\142\145\x20\x61\x62\x6c\145\x20\x74\157\x20\143\150\x61\156\x67\x65\163\40\164\150\145\x73\145\40\141\164\164\x72\x69\x62\x75\x74\x65\163\x2e", "\x23\141\164\164\162\151\142\165\x74\x65\x73" => array("\x70\154\141\x63\x65\x68\x6f\x6c\x64\145\162" => "\x45\156\x74\145\x72\40\163\145\x6d\x69\143\x6f\x6c\157\156\x28\x3b\x29\40\x73\145\160\x61\162\141\164\x65\x64\40\x70\162\x6f\x66\x69\154\145\x20\x61\164\164\162\x69\x62\x75\x74\145\40\155\141\x63\x68\x69\x6e\145\40\x6e\x61\155\145\163\40\164\x68\x61\x74\40\x79\157\165\x20\144\x69\163\x61\x62\x6c\x65\x2e"));
$jx = $this->config->get("\155\151\156\x69\x6f\x72\141\156\147\145\137\x6f\141\165\x74\x68\x5f\x64\151\x73\x61\142\154\x65\x5f\x70\141\x73\x73\137\143\x6f\x6e\146\x69\x72\x6d\137\x70\x61\x73\163");
$form["\x6d\x69\156\151\x6f\x72\141\x6e\x67\145\137\157\x61\165\x74\150\x5f\x61\165\x74\157\x5f\x64\x69\163\141\142\x6c\x65\137\x66\151\x65\154\144\x73\x65\x74"]["\x6d\151\x6e\151\157\162\x61\156\147\145\x5f\x6f\141\165\x74\x68\137\144\151\163\141\142\x6c\145\x5f\x70\x61\163\163\x5f\x63\x6f\x6e\146\151\x72\155\x5f\160\141\163\x73"] = array("\43\164\x69\164\x6c\145" => t("\x44\151\x73\x61\142\154\x65\x2f\x48\151\x64\x65\x20\x22\74\x75\x3e\103\x75\162\x72\x65\156\164\x20\x70\141\163\x73\x77\157\162\x64\x3c\57\x75\76\42\x2c\x20\x22\74\x75\76\120\141\x73\x73\167\x6f\x72\144\74\x2f\x75\76\42\x20\x61\x6e\x64\x20\x22\74\165\x3e\x43\165\162\162\x65\x6e\x74\x20\120\141\x73\x73\x77\x6f\x72\x64\74\57\165\x3e\42\x20\146\x69\145\154\x64\163\x20\x6f\x66\x20\x75\x73\145\x72\40\x70\x72\157\146\x69\154\x65\x20\x70\141\x67\x65\x3a"), "\43\x74\171\x70\x65" => "\x72\x61\144\x69\x6f\163", "\x23\157\x70\x74\151\x6f\156\163" => array("\145\x64\x69\x74\141\x62\154\145" => t("\x4b\x65\x65\160\x20\105\144\x69\164\x61\142\154\x65"), "\x64\x69\x73\x61\142\x6c\145" => t("\x44\151\163\141\142\154\x65"), "\x68\151\144\x65" => t("\x44\151\x73\141\142\154\x65\x20\x61\x6e\x64\x20\x48\151\x64\x65")), "\x23\x64\145\x66\141\x75\154\x74\x5f\x76\141\154\165\145" => $jx ? $jx : "\x65\144\151\164\x61\x62\x6c\145", "\43\141\164\x74\x72\x69\142\x75\x74\x65\163" => array("\x63\154\x61\163\163" => array("\143\157\156\164\x61\x69\x6e\x65\162\55\151\x6e\x6c\x69\x6e\145")), "\x23\162\145\161\x75\x69\x72\x65\x64" => TRUE, "\x23\x70\x72\x65\146\151\x78" => "\x3c\x62\162\76");
$form["\x6d\151\x6e\x69\157\x72\141\x6e\147\145\137\157\x61\x75\x74\x68\x5f\x64\165\x70\154\x69\x63\x61\164\145\137\165\x73\145\x72\156\141\155\x65\x5f\x68\x65\141\x64\145\162"] = array("\x23\155\141\x72\153\x75\x70" => "\x3c\142\162\76\74\x68\x33\76\x44\165\160\x6c\151\x63\141\x74\x65\40\x55\163\145\x72\156\141\155\x65\74\57\150\63\x3e\x3c\150\162\x3e\x3c\160\40\143\x6c\141\163\x73\x3d\42\155\x6f\x5f\x6f\141\165\x74\150\x5f\x68\x69\147\150\x6c\x69\x67\150\x74\x5f\x62\x61\143\153\x67\x72\157\165\x6e\x64\x5f\156\157\x74\145\x5f\x31\42\x3e\15\12\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x3c\x73\x74\x72\x6f\x6e\147\x3e\x4e\x6f\164\145\x3a\x20\74\57\163\164\162\x6f\x6e\147\x3e\x20\101\164\40\164\150\145\x20\x74\151\x6d\x65\x20\x6f\146\40\x75\x73\x65\x72\40\x63\x72\x65\141\x74\151\157\156\x20\151\x6e\40\x44\x72\165\160\x61\x6c\x2c\x20\x69\x66\40\x75\x73\x65\x72\x20\141\154\162\x65\141\x64\x79\x20\x65\x78\x69\x73\164\163\40\x77\x69\164\x68\40\164\150\x65\x20\163\141\155\145\x20\x75\163\x65\x72\156\x61\155\x65\54\40\x74\150\145\x6e\40\143\x72\145\x61\164\145\40\165\x73\x65\x72\x20\167\x69\164\x68\x20\164\150\145\40\151\x6e\x63\162\x65\x6d\x65\156\164\141\154\40\x75\163\x65\x72\156\141\155\145\x2e\40\106\x6f\x72\40\x65\147\56\x20\x78\x79\x7a\x2c\40\x78\x79\x7a\60\x31\x2c\x20\170\171\172\60\62\54\40\x65\x74\x63\56\x3c\57\160\76");
$form["\155\151\x6e\x69\x6f\162\141\x6e\147\x65\137\157\141\x75\x74\x68\137\144\165\160\x6c\151\143\141\164\145\x5f\x75\163\145\x72\156\141\155\145"] = array("\43\164\171\x70\x65" => "\143\150\145\143\x6b\142\x6f\170", "\43\x74\151\164\x6c\145" => t("\x3c\142\x3e\105\x6e\141\142\x6c\x65\40\164\150\x69\x73\x20\x63\150\x65\143\x6b\142\157\170\x20\x74\x6f\40\x61\x6c\x6c\157\x77\x20\x64\x75\x70\x6c\x69\x63\x61\164\145\x20\165\x73\145\x72\156\141\155\145\40\164\157\40\x63\x72\145\141\x74\145\40\165\x73\145\162\x2e\74\x2f\x62\x3e"), "\43\144\x65\x66\x61\165\x6c\x74\x5f\x76\141\154\165\x65" => \Drupal::config("\155\151\x6e\x69\x6f\x72\x61\x6e\147\145\137\x6f\x61\x75\x74\150\137\x63\154\151\145\156\x74\56\x73\145\164\164\x69\156\147\163")->get("\x6d\x69\156\151\x6f\162\x61\x6e\x67\145\x5f\157\x61\x75\164\150\x5f\144\x75\x70\154\x69\x63\141\x74\x65\x5f\165\163\145\162\156\141\x6d\x65"), "\x23\x64\151\163\141\142\154\145\144" => $q7);
$form["\x6d\x69\x6e\151\x6f\x72\141\x6e\x67\145\x5f\157\141\x75\x74\x68\x5f\x63\x6c\x69\x65\156\164\x5f\147\141\164\145\167\x61\171\137\143\x6f\x6e\x66\151\147\x5f\163\x75\x62\x6d\151\x74"] = array("\43\164\x79\x70\145" => "\163\x75\x62\x6d\151\x74", "\43\x76\141\x6c\x75\x65" => t("\x53\141\x76\145\40\103\x6f\x6e\x66\151\x67\165\162\141\x74\x69\157\156"), "\43\144\151\x73\141\142\x6c\145\x64" => $q7, "\43\142\165\164\164\157\x6e\137\164\x79\160\145" => "\x70\162\x69\x6d\141\x72\x79", "\x23\163\165\x62\x6d\151\x74" => array("\72\x3a\x6d\x69\156\x69\157\x72\141\x6e\147\x65\137\157\x61\165\164\x68\x5f\143\x6c\151\145\x6e\164\137\163\x61\x76\x65\137\x73\151\x67\x6e\x69\156\x5f\x73\x65\164\x74\x69\x6e\x67\163"), "\x23\160\162\x65\146\x69\170" => "\x3c\142\162\76", "\x23\163\x75\146\x66\x69\170" => "\74\142\x72\x3e\x3c\x62\x72\x3e\x3c\x62\x72\76");
global $base_url;
$R_ = array("\x69\x64\160\137\156\x61\x6d\x65" => array("\144\141\164\x61" => t("\117\101\x75\x74\x68\x20\x53\x65\x72\x76\x65\x72\40\116\141\x6d\145")), "\x65\144\x69\x74" => array("\x64\141\164\141" => t("\x53\x69\147\x6e\40\151\x6e\40\x53\145\x74\x74\x69\x6e\x67\163")));
$sT = DBQueries::get_all_app_names();
$zt = array();
$Yp = 0;
foreach ($sT as $dc) {
$zt[$Yp] = $dc->app_name;
$Yp++;
uD:
}
xo:
foreach ($zt as $fh) {
$pR[$fh] = array("\151\x64\x70\x5f\156\x61\x6d\x65" => $fh, "\145\144\151\164" => Markup::create("\x3c\x61\x20\150\x72\x65\146\75\42\x20" . $base_url . "\x2f\141\x64\155\151\156\57\143\x6f\156\146\x69\x67\57\160\145\x6f\160\x6c\x65\57\x6d\151\156\x69\157\162\x61\x6e\147\145\137\x6f\141\165\164\150\137\x63\x6c\x69\145\x6e\x74\x2f\163\x65\x74\x74\151\x6e\147\163\x3f\x61\160\x70\75" . $fh . "\x22\40\76\105\144\151\x74\x3c\57\x61\76"));
RZ:
}
fI:
$form["\160\x72\x6f\166\151\x64\x65\162\137\163\160\x65\x63\151\x66\151\x63\137\x73\x69\x67\156\x69\x6e\137\163\145\x74\164\x69\x6e\147\163"] = array("\x23\x6d\141\x72\153\165\x70" => "\x3c\x68\x34\x3e\120\162\x6f\x76\151\x64\145\x72\x20\123\x70\x65\143\151\x66\x69\143\x20\123\151\147\x6e\x20\151\x6e\x20\x53\145\164\164\x69\156\147\x73\74\x2f\x68\x34\76\x3c\150\162\x3e");
$form["\155\x6f\137\163\141\155\154\x5f\x69\x64\x70\x6c\151\163\164\x5f\164\x61\142\x6c\x65"] = array("\43\164\x79\x70\145" => "\x74\141\x62\x6c\145", "\x23\x68\x65\141\144\x65\x72" => $R_, "\43\x72\157\167\x73" => isset($pR) && !empty($pR) ? $pR : '', "\43\145\155\x70\x74\x79" => t("\x3c\144\151\166\40\x63\154\141\163\x73\75\x27\x6d\x6f\x5f\157\x61\x75\x74\x68\x5f\150\151\x67\x68\x6c\151\x67\x68\164\x5f\x62\141\x63\x6b\147\x72\157\165\156\x64\x5f\156\x6f\164\x65\x5f\x31\47\76\74\x62\x20\x63\x6c\141\x73\163\75\x27\155\x6f\x5f\x6e\157\164\145\x5f\x63\163\163\x27\x3e\120\x6c\145\141\163\x65\x20\116\x6f\x74\145\72\x3c\x2f\x62\x3e\x20\131\157\x75\40\150\x61\x76\145\40\x6e\157\x74\40\x63\x6f\156\x66\x69\x67\x75\x72\145\x64\40\x61\x6e\x79\x20\160\162\x6f\166\x69\144\145\x72\40\x79\145\164\54\x20\120\x6c\145\x61\x73\x65\x20\101\144\144\x20\160\x72\157\166\151\x64\145\162\40\x62\x79\40\x63\x6c\x69\x63\153\x69\156\x67\x20\x3c\142\x3e\x41\144\x64\x20\x4e\145\x77\40\x50\162\157\166\x69\144\x65\162\74\57\x62\76\x20\x62\165\164\164\157\156\40\x69\x6e\x20\x3c\x62\76\x43\x6f\x6e\146\x69\147\x75\162\145\x20\117\x41\x75\x74\x68\x3c\x2f\x62\76\x20\x54\141\x62\x3c\x2f\144\x69\x76\x3e\x3c\x62\x72\76"));
Utilities::spConfigGuide($form, $form_state);
Utilities::moOAuthShowCustomerSupportIcon($form, $form_state);
return $form;
}
function miniorange_oauth_client_save_signin_settings($form, FormStateInterface $form_state)
{
$wI = $form_state->getValues();
global $base_url;
$NQ = $form["\x6d\x69\156\151\x6f\x72\x61\x6e\147\x65\137\x6f\141\x75\164\x68\137\143\x6c\151\x65\156\164\x5f\141\165\164\157\x5f\x72\x65\144\151\x72\x65\x63\x74"]["\43\x76\x61\x6c\165\145"];
$sM = $form["\x6d\151\x6e\x69\157\162\141\156\x67\x65\x5f\x6f\141\165\x74\x68\x5f\x63\x6c\151\145\x6e\164\x5f\x64\x65\146\141\x75\154\164\x5f\162\x65\154\141\171\x73\x74\x61\164\x65"]["\x23\x76\141\154\x75\145"];
$Sp = $form["\155\x69\x6e\x69\157\x72\x61\x6e\x67\145\x5f\157\141\x75\164\150\137\x63\x6c\x69\x65\x6e\x74\137\145\156\141\x62\x6c\145\137\142\141\143\x6b\144\x6f\x6f\x72"]["\43\x76\x61\x6c\x75\145"];
$gi = $form["\x6d\151\x6e\x69\157\162\141\x6e\x67\x65\137\x6f\x61\x75\164\x68\x5f\x63\x6c\x69\145\x6e\x74\137\x62\141\163\145\137\165\162\x6c"]["\43\x76\x61\x6c\165\145"];
$gs = $form["\x6d\151\156\x69\157\x72\x61\x6e\147\145\137\x6f\141\x75\164\150\137\x64\x75\160\154\x69\143\141\164\145\137\165\163\145\162\156\141\155\x65"]["\x23\166\141\154\x75\x65"];
$y7 = $form["\x6d\x69\156\151\x6f\162\141\156\147\145\137\x6f\141\165\x74\x68\137\x64\x6f\155\141\151\x6e\137\162\145\163\164\162\151\x63\x74\151\157\x6e\137\x63\x68\145\143\x6b\142\157\170"]["\x23\x76\x61\154\165\145"];
$rR = $form["\x6d\x69\x6e\151\x6f\162\141\x6e\147\145\137\x6f\x61\x75\x74\150\x5f\x73\x65\x74\x5f\157\146\137\162\141\x64\x69\157\x62\x75\164\164\157\156\163"]["\x6d\151\x6e\151\157\x72\141\x6e\147\145\137\157\x61\165\x74\x68\x5f\141\x6c\154\157\x77\x5f\157\162\137\x62\154\x6f\x63\153\137\x64\x6f\x6d\141\151\x6e\x73"]["\43\166\141\x6c\165\145"];
$iF = trim($form["\x6d\151\x6e\x69\x6f\162\x61\x6e\147\145\x5f\x6f\x61\165\x74\x68\137\x73\145\164\x5f\x6f\146\x5f\x72\141\144\x69\157\142\165\x74\x74\x6f\156\x73"]["\155\x69\x6e\151\x6f\162\x61\x6e\147\145\x5f\157\141\165\164\x68\x5f\144\x6f\155\141\151\x6e\163"]["\43\166\x61\154\x75\x65"]);
$iv = $wI["\155\x69\x6e\151\157\x72\141\156\147\145\137\157\141\x75\164\150\137\143\x6c\x69\x65\x6e\x74\x5f\x66\157\x72\x63\145\x5f\141\165\x74\150"];
$Jk = $wI["\143\150\x6f\x6f\x73\145\137\x74\171\x70\x65\x5f\x6f\x66\x5f\x70\x61\147\x65\x5f\x72\145\163\x74\x72\x69\143\x74\151\x6f\x6e"];
$YK = $wI["\155\x69\156\x69\x6f\162\141\156\147\145\x5f\x6f\141\165\x74\150\137\160\141\x67\x65\137\x77\x68\151\x74\145\x6c\x69\163\164\x5f\x75\x72\154\x73"];
$R3 = !empty($YK) ? explode("\xa", $YK) : [];
if (empty($R3)) {
goto HC;
}
$YK = array_filter($R3, "\x74\162\151\155");
$YK = implode("\x3b", $YK);
HC:
$f1 = $wI["\155\151\x6e\151\x6f\x72\x61\156\x67\x65\x5f\157\141\165\164\150\x5f\x70\x61\147\x65\137\162\145\163\164\162\x69\143\x74\x5f\x75\x72\154\x73"];
$K8 = !empty($f1) ? explode("\12", $f1) : [];
if (empty($K8)) {
goto Nr;
}
$f1 = array_filter($K8, "\x74\162\151\155");
$f1 = implode("\73", $f1);
Nr:
$y7 = empty($iF) ? 0 : $y7;
if (empty($iF)) {
goto V3;
}
if (!($y7 == 0)) {
goto Ze;
}
$y7 = 0;
$iF = '';
Ze:
goto YG;
V3:
$y7 = 0;
YG:
if ($iv == 0) {
goto wS;
}
if ($Jk == "\167\x68\151\164\145\x6c\151\x73\x74\137\x70\x61\147\x65\x73") {
goto J2;
}
$YK = '';
goto qk;
J2:
$f1 = '';
qk:
$NQ = 0;
goto UJ;
wS:
$iv = 0;
$Jk = null;
$f1 = '';
$YK = '';
UJ:
$rT = '';
$DP = '';
$ms = $wI["\x6d\x69\x6e\151\x6f\x72\x61\156\x67\x65\x5f\157\141\x75\164\150\137\162\145\161\x75\x69\x72\x65\x5f\x70\x72\x6f\146\151\x6c\145\x5f\x66\151\x65\154\144"];
if (!$ms) {
goto Fd;
}
$rT = $wI["\155\x69\x6e\x69\157\162\x61\x6e\147\145\x5f\157\141\165\164\x68\x5f\162\x65\x71\165\151\162\145\x64\x5f\x75\163\x65\x72\x5f\160\x72\x6f\146\x69\x6c\145\x5f\141\164\164\162\x69\142\165\164\x65\x73"];
$rT = str_replace("\40", '', $rT);
$ms = empty($rT) ? 0 : 1;
Fd:
$mF = $wI["\155\x69\x6e\x69\x6f\x72\141\156\x67\145\137\157\x61\x75\x74\150\137\144\x69\x73\x61\142\x6c\145\x5f\x70\162\157\x66\x69\154\145\x5f\146\151\145\154\x64"];
if (!$mF) {
goto qr;
}
$DP = $wI["\x6d\x69\x6e\151\157\x72\141\156\x67\x65\x5f\x6f\x61\x75\164\150\137\x64\x69\x73\x61\142\154\145\x5f\165\x73\x65\162\x5f\x70\162\x6f\x66\151\x6c\145\x5f\x61\x74\164\x72\151\x62\x75\x74\145\x73"];
$DP = str_replace("\40", '', $DP);
$this->config_factory->set("\155\151\x6e\x69\x6f\162\x61\156\x67\x65\x5f\157\x61\x75\164\x68\x5f\144\x69\x73\141\142\x6c\145\x5f\160\141\163\x73\137\143\x6f\x6e\146\151\162\x6d\x5f\x70\141\x73\163", $wI["\x6d\x69\156\x69\x6f\162\141\156\x67\145\137\157\141\x75\x74\x68\x5f\x64\x69\163\x61\x62\154\x65\137\160\141\x73\163\x5f\143\157\x6e\x66\151\x72\x6d\x5f\x70\141\163\163"])->save();
qr:
$this->config_factory->set("\x6d\151\156\x69\157\162\141\156\147\x65\x5f\157\141\x75\164\x68\x5f\143\x6c\x69\145\156\x74\x5f\142\141\163\x65\x5f\165\162\x6c", $gi)->save();
$sS = Utilities::getOAuthBaseURL($base_url);
$LZ = substr($sS, -1) == "\57" ? $sS . "\x6d\157\x5f\x6c\157\147\x69\156" : $sS . "\x2f\155\x6f\137\x6c\x6f\147\x69\156";
$this->config_factory->set("\x6d\151\x6e\x69\157\162\x61\156\147\145\137\x61\x75\164\x68\137\x63\x6c\x69\x65\x6e\x74\137\143\x61\x6c\x6c\142\141\143\x6b\137\x75\x72\151", $LZ)->save();
$NQ = $NQ == 1 ? TRUE : FALSE;
$iv = $iv == 1 ? TRUE : FALSE;
$Sp = $Sp == 1 ? TRUE : FALSE;
$Dp = $wI["\155\151\x6e\151\x6f\162\x61\x6e\147\145\x5f\x6f\141\165\164\x68\137\x63\154\151\145\x6e\164\x5f\x65\156\x61\x62\154\145\x5f\160\x61\x67\x65\x5f\x61\x63\143\145\x73\163"];
$Dp = $Dp == 1 ? TRUE : FALSE;
if ($NQ || $iv) {
goto Xy;
}
$this->config_factory->set("\155\151\x6e\x69\x6f\x72\141\156\x67\145\x5f\157\x61\x75\164\x68\137\x63\x6c\x69\145\x6e\x74\x5f\x65\156\x61\x62\x6c\145\137\160\x61\x67\145\x5f\x61\143\143\x65\x73\x73", FALSE)->save();
goto CZ;
Xy:
$at = $form["\155\151\156\x69\157\x72\x61\156\x67\145\137\x6f\x61\165\x74\150\137\143\x6c\x69\x65\x6e\164\x5f\x73\x65\x6c\x65\143\164\x65\144\x5f\x61\160\160"]["\43\x76\x61\154\x75\x65"];
$this->config_factory->set("\141\x75\164\157\x5f\162\145\x64\x69\162\x65\143\164\x5f\x61\x70\x70\137\x6e\x61\x6d\x65", $at)->save();
$this->config_factory->set("\155\151\x6e\151\157\162\141\x6e\x67\x65\x5f\x6f\x61\x75\164\150\137\143\x6c\x69\145\156\164\137\145\156\141\x62\154\145\x5f\x70\x61\147\145\137\141\143\143\x65\163\163", $Dp)->save();
CZ:
$this->config_factory->set("\x6d\151\156\151\x6f\x72\x61\x6e\x67\x65\x5f\157\141\165\x74\x68\x5f\145\x6e\x61\x62\154\x65\x5f\144\x6f\155\x61\x69\x6e\x5f\x72\x65\x73\164\162\151\x63\x74\x69\157\156", $y7)->set("\155\x69\156\x69\157\x72\141\x6e\147\145\137\157\x61\165\164\x68\x5f\x64\x6f\155\x61\x69\x6e\163\x5f\141\x72\145\x5f\167\150\x69\x74\x65\x5f\x6f\x72\137\x62\x6c\x61\x63\153", $rR)->set("\155\x69\x6e\x69\x6f\162\x61\156\x67\x65\x5f\x6f\x61\x75\164\150\137\144\x6f\155\x61\x69\156\163", $iF)->set("\155\x69\x6e\x69\157\162\141\156\x67\145\137\157\x61\x75\x74\150\x5f\x63\x6c\x69\x65\156\164\137\x66\157\x72\x63\x65\137\x61\165\x74\150", $iv)->set("\155\151\156\151\x6f\162\x61\x6e\x67\x65\x5f\157\141\165\x74\x68\137\x70\141\147\x65\137\x72\145\163\164\x72\151\143\x74\x69\x6f\156\137\x74\171\160\x65", $Jk)->set("\155\151\156\151\157\162\x61\x6e\147\x65\137\157\x61\165\x74\150\137\160\x61\147\145\x5f\162\x65\163\x74\162\151\143\x74\151\157\x6e\x5f\x77\x68\x69\x74\145\154\151\163\164\145\x64\x5f\160\x61\147\x65\x73", $YK)->set("\x6d\x69\156\151\x6f\x72\x61\x6e\x67\x65\137\x6f\141\x75\x74\150\137\160\x61\x67\x65\137\162\145\163\x74\x72\x69\x63\x74\x69\x6f\156\x5f\162\145\x73\164\x72\151\x63\164\x65\x64\137\160\141\x67\x65\x73", $f1)->set("\x6d\x69\x6e\x69\x6f\x72\141\156\x67\145\137\157\141\165\164\x68\137\x63\x6c\x69\x65\156\x74\137\141\x75\x74\x6f\x5f\x72\x65\144\x69\162\x65\143\x74\x5f\164\157\x5f\x69\x64\x70", $NQ)->set("\x6d\x69\156\x69\x6f\162\x61\x6e\147\145\137\x6f\141\x75\164\150\137\143\154\x69\145\156\x74\137\x64\x65\146\141\165\154\x74\x5f\162\x65\x6c\141\x79\163\164\x61\164\x65", $sM)->set("\155\x69\156\x69\x6f\x72\141\156\147\x65\137\x6f\141\165\164\150\x5f\x63\x6c\x69\x65\156\x74\137\145\156\x61\142\154\145\x5f\x62\141\143\x6b\x64\157\157\162", $Sp)->set("\155\151\x6e\x69\x6f\162\141\156\147\x65\x5f\x6f\141\x75\x74\x68\x5f\162\x65\161\165\151\162\145\137\x70\x72\x6f\x66\x69\x6c\145\137\x66\x69\145\154\x64", $ms)->set("\155\151\156\151\x6f\162\x61\156\x67\145\137\x6f\141\165\164\150\137\x72\x65\161\x75\151\x72\145\x64\137\x75\163\145\162\137\x70\x72\157\x66\151\x6c\145\x5f\141\164\164\x72\151\142\165\164\x65\x73", $rT)->set("\x6d\x69\x6e\151\157\x72\x61\156\147\145\x5f\x6f\x61\165\164\150\x5f\144\x69\163\141\142\154\145\x5f\x70\x72\x6f\146\x69\x6c\145\137\146\151\145\154\x64", $mF)->set("\x6d\x69\156\x69\157\x72\141\156\147\x65\x5f\157\x61\165\164\x68\x5f\x64\x69\163\x61\142\x6c\x65\x5f\165\163\x65\x72\x5f\x70\x72\x6f\x66\151\x6c\145\x5f\141\x74\164\x72\x69\x62\165\x74\145\x73", $DP)->set("\155\151\156\x69\157\x72\141\156\x67\145\x5f\x6f\x61\165\164\x68\137\144\165\160\x6c\x69\x63\141\x74\145\137\165\163\145\162\156\141\155\x65", $gs)->save();
$this->messenger->addMessage(t("\x53\151\147\x6e\151\156\x20\x53\x65\164\x74\151\156\147\163\x20\163\x75\143\x63\x65\163\163\x66\165\154\154\x79\x20\163\x61\x76\x65\x64"));
drupal_flush_all_caches();
}
public function miniorange_oauth_client_save_provider_specific_signin_settings(array &$form, FormStateInterface $form_state)
{
$oS = $form["\155\151\x6e\x69\157\x72\x61\156\x67\145\137\157\x61\x75\164\x68\x5f\x65\156\141\x62\154\145\137\x61\x75\x74\157\143\x72\145\x61\164\x65\137\x75\163\x65\x72\163"]["\43\x76\141\x6c\165\x65"];
$LM = $form["\x6d\x69\156\x69\157\162\x61\156\147\x65\x5f\x6f\x61\x75\x74\x68\x5f\163\145\x74\x5f\x74\157\x6b\x65\x6e\x5f\163\145\x73\x73\151\157\x6e"]["\x23\x76\141\x6c\x75\145"];
$wu = $form["\155\x69\x6e\x69\157\162\x61\x6e\147\145\x5f\x6f\x61\x75\164\x68\x5f\x73\145\x6e\144\x5f\151\144\x5f\x74\157\x6b\145\x6e"]["\43\x76\x61\154\165\145"];
$PN = '';
if (!isset($form["\155\x69\x6e\x69\x6f\x72\141\156\x67\x65\137\157\x61\165\164\x68\x5f\143\154\x69\x65\x6e\164\x5f\x6c\x6f\147\x6f\165\x74\137\165\x72\154"]["\x23\166\x61\x6c\165\x65"])) {
goto yw;
}
$PN = trim($form["\x6d\151\x6e\151\x6f\162\141\x6e\147\145\137\157\141\x75\164\150\137\x63\154\151\145\x6e\164\137\154\157\x67\x6f\x75\x74\x5f\x75\x72\x6c"]["\43\166\x61\154\x75\145"]);
yw:
if (!($LM == false)) {
goto Os;
}
$wu = 0;
Os:
$PE = \Drupal::database();
$PE->update("\155\151\x6e\x69\157\x72\141\156\x67\145\x5f\157\x61\x75\164\x68\x5f\x63\x6c\151\145\x6e\x74\x5f\141\160\x70\x73")->fields(["\x73\x69\156\x67\x6c\145\137\x6c\x6f\x67\x6f\165\164\137\165\x72\154" => $PN, "\x65\156\x61\142\x6c\145\137\x61\x75\164\x6f\x5f\143\162\x65\141\x74\x65\137\165\x73\x65\x72" => $oS, "\x65\156\141\142\154\145\137\x73\x65\x74\137\x74\x6f\153\x65\156\x5f\151\156\137\x73\145\163\163\151\157\x6e\x5f\x68\x65\141\144\x65\x72" => $LM, "\x73\145\156\144\x5f\x69\144\x5f\x74\157\153\145\x6e\137\151\x6e\137\x73\154\x6f\x5f\162\x65\x71\x75\x65\x73\x74" => $wu])->condition("\141\160\160\137\x6e\141\155\145", $_GET["\x61\x70\x70"], "\75")->execute();
$this->messenger->addMessage(t("\x53\x69\x67\x6e\151\x6e\40\123\145\x74\x74\x69\156\147\x73\40\163\165\x63\x63\x65\163\x73\x66\165\x6c\154\x79\x20\163\141\x76\x65\x64"));
$Eb = new RedirectResponse(Url::fromRoute("\155\151\x6e\151\x6f\162\x61\x6e\x67\x65\x5f\157\x61\165\164\x68\137\143\x6c\x69\x65\156\164\x2e\x73\x65\x74\164\x69\156\x67\x73")->toString());
$Eb->send();
return new Response();
}
public function submitForm(array &$form, FormStateInterface $form_state)
{
}
public function saved_support(array &$form, FormStateInterface $form_state)
{
$kP = $form["\155\151\x6e\x69\x6f\162\x61\156\147\145\137\x6f\x61\165\x74\150\x5f\143\x6c\x69\x65\x6e\164\137\145\155\x61\151\154\137\x61\144\144\162\x65\163\163"]["\x23\166\x61\x6c\165\x65"];
$Zp = $form["\155\x69\x6e\151\x6f\162\x61\156\x67\145\137\x6f\x61\x75\164\150\137\x63\154\x69\145\156\164\x5f\160\x68\x6f\x6e\145\x5f\156\165\155\x62\145\162"]["\43\x76\x61\x6c\x75\x65"];
$Xu = $form["\x6d\151\x6e\x69\157\x72\x61\x6e\147\145\x5f\x6f\141\x75\x74\x68\137\143\x6c\x69\145\x6e\x74\x5f\163\x75\x70\160\157\x72\x74\137\x71\x75\145\162\171"]["\43\x76\x61\x6c\x75\145"];
Utilities::send_support_query($kP, $Zp, $Xu);
}
}
Function Calls
None |
Stats
MD5 | 674c88e273b9995e5d5df2de72f8d499 |
Eval Count | 0 |
Decode Time | 108 ms |