Seditio Source
Root |
./othercms/PHPFusion 9.10.20/administration/settings_registration.php
<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: settings_registration.php
| Author: Core Development Team
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
require_once __DIR__.'/../maincore.php';
require_once
THEMES.'templates/admin_header.php';
pageaccess('S4');

$locale = fusion_get_locale('', LOCALE.LOCALESET."admin/settings.php");
$settings = fusion_get_settings();

add_breadcrumb(['link' => ADMIN.'settings_registration.php'.fusion_get_aidlink(), 'title' => $locale['register_settings']]);

$is_multilang = count(fusion_get_enabled_languages()) > 1;

if (
check_post('savesettings')) {
   
$inputData = [
       
'login_method'        => sanitizer('login_method', '0', 'login_method'),
       
'license_agreement'   => sanitizer($is_multilang ? ['license_agreement'] : 'license_agreement', '', 'license_agreement', $is_multilang),
       
'enable_registration' => post('enable_registration') ? 1 : 0,
       
'email_verification'  => post('email_verification') ? 1 : 0,
       
'admin_activation'    => post('admin_activation') ? 1 : 0,
       
'enable_terms'        => post('enable_terms') ? 1 : 0,
       
'license_lastupdate'  => (check_post('license_agreement') != fusion_get_settings('license_agreement') ? time() : fusion_get_settings('license_lastupdate')),
       
'gateway'             => post('gateway') ? 1 : 0,
       
'gateway_method'      => sanitizer('gateway_method', 0, 'gateway_method'),
    ];

    if (
fusion_safe()) {
        foreach (
$inputData as $settings_name => $settings_value) {
           
dbquery("UPDATE ".DB_SETTINGS." SET settings_value=:settings_value WHERE settings_name=:settings_name", [
               
':settings_value' => $settings_value,
               
':settings_name'  => $settings_name
           
]);
        }

       
addnotice('success', $locale['900']);
       
redirect(FUSION_REQUEST);
    }
}

if (
check_post('delete_gw_tmp')) {
    if (
is_file(INCLUDES.'gateway/flood/ctrl')) {
       
unlink(INCLUDES.'gateway/flood/ctrl');
    }

   
$path = INCLUDES.'gateway/flood/lock/';
   
$tmp_files = makefilelist(INCLUDES.'gateway/flood/lock/', 'index.php');

    foreach (
$tmp_files as $file) {
        if (
is_file($path.$file)) {
            @
unlink($path.$file);
        }
    }

   
addnotice('success', $locale['gateway_002']);
   
redirect(FUSION_REQUEST);
}

opentable($locale['register_settings']);
echo
openform('settingsform', 'post', FUSION_REQUEST);
echo
"<div class='well'>".$locale['register_description']."</div>\n";
echo
"<div class='row'>\n";
echo
"<div class='col-xs-12 col-sm-8'>\n";
openside('');
echo
form_checkbox('enable_terms', $locale['558'], $settings['enable_terms'], [
   
'toggle' => TRUE
]);
if (
$is_multilang == TRUE) {
    echo \
PHPFusion\QuantumFields::quantumMultilocaleFields('license_agreement', $locale['559'], $settings['license_agreement'], [
       
'form_name' => 'settingsform',
       
'input_id'  => 'enable_license_agreement',
       
'autosize'  => (bool)fusion_get_settings('tinymce_enabled'),
       
'type'      => (fusion_get_settings('tinymce_enabled') ? 'tinymce' : 'html'),
       
'function'  => 'form_textarea'
   
]);
} else {
    echo
form_textarea('license_agreement', $locale['559'], $settings['license_agreement'], [
       
'form_name' => 'settingsform',
       
'autosize'  => (bool)fusion_get_settings('tinymce_enabled'),
       
'html'      => !fusion_get_settings('tinymce_enabled')
    ]);
}
closeside();
echo
"</div><div class='col-xs-12 col-sm-4'>\n";
openside('');
echo
form_checkbox('enable_registration', $locale['551'], $settings['enable_registration'], [
   
'toggle' => TRUE
]);
echo
form_checkbox('email_verification', $locale['552'], $settings['email_verification'], [
   
'toggle' => TRUE
]);
echo
form_checkbox('admin_activation', $locale['557'], $settings['admin_activation'], [
   
'toggle' => TRUE
]);
$opts = ['0' => $locale['global_101'], '1' => $locale['699e'], '2' => $locale['699b']];
echo
form_select('login_method', $locale['699'], $settings['login_method'], ['options' => $opts]);

closeside();

openside('');
echo
form_checkbox('gateway', $locale['security_010'], $settings['gateway'], [
   
'toggle' => TRUE
]);
echo
form_select('gateway_method', $locale['security_011'], $settings['gateway_method'], [
   
'options'     => [
       
0 => $locale['security_012'],
       
1 => $locale['security_013'],
       
2 => $locale['security_014']
    ],
   
'width'       => '100%',
   
'inner_width' => '100%'
]);

echo
form_button('delete_gw_tmp', $locale['gateway_001'], 'delete_gw_tmp', ['class' => 'btn-danger', 'icon' => 'fas fa-trash']);

closeside();

echo
"</div>\n</div>\n";
echo
form_button('savesettings', $locale['750'], $locale['750'], ['class' => 'btn-success']);
echo
closeform();
closetable();
require_once
THEMES.'templates/footer.php';