multi language support
support for small devices
This commit is contained in:
parent
4d479cedaf
commit
b3b58ce103
21
assets/searchtable.js
Normal file
21
assets/searchtable.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
function searchTable(tableId, searchField) {
|
||||||
|
var input, filter, table, tr, td, i, j, txtValue;
|
||||||
|
input = searchField;
|
||||||
|
filter = input.value.toUpperCase();
|
||||||
|
table = document.getElementById(tableId);
|
||||||
|
tr = table.getElementsByTagName("tr");
|
||||||
|
for (i = 0; i < tr.length; i++) {
|
||||||
|
td = tr[i].getElementsByTagName("td");
|
||||||
|
for (j = 0; j < td.length; j++) {
|
||||||
|
if (td[j]) {
|
||||||
|
txtValue = td[j].textContent || td[j].innerText;
|
||||||
|
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
||||||
|
tr[i].style.display = "";
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
tr[i].style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -52,7 +52,7 @@
|
|||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.protect-login-no-blocked-ips
|
.bdp-kompass-no-blocked-ips
|
||||||
{
|
{
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
@ -8,7 +8,7 @@ body {
|
|||||||
#adminmenu {
|
#adminmenu {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
background: #f0f0f0;
|
background: #f0f0f0;
|
||||||
width: 300px;
|
width: 300px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminmenu {
|
#adminmenu {
|
||||||
@ -24,12 +24,10 @@ body {
|
|||||||
border-color: #f0f0f0;
|
border-color: #f0f0f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#wpbody {
|
#wpbody {
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-left: 150px;
|
padding-left: 150px;
|
||||||
|
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,6 +36,18 @@ body {
|
|||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wp-list-table thead {
|
||||||
|
background-color: rgba(117, 151, 234, 0.6) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-list-table tbody tr:nth-child(odd) {
|
||||||
|
background-color: rgba(255, 239, 190, 0.45) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wp-list-table tbody tr:nth-child(even) {
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
#wpfooter {
|
#wpfooter {
|
||||||
padding-left: 150px;
|
padding-left: 150px;
|
||||||
}
|
}
|
||||||
@ -64,7 +74,6 @@ body {
|
|||||||
#adminmenu li > a.menu-top:focus {
|
#adminmenu li > a.menu-top:focus {
|
||||||
color: #1d4899;
|
color: #1d4899;
|
||||||
border-color: #f0f0f0;
|
border-color: #f0f0f0;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
background: linear-gradient(to right, #efefef, rgba(255, 203, 4, 0.45));
|
background: linear-gradient(to right, #efefef, rgba(255, 203, 4, 0.45));
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@ -82,13 +91,20 @@ body {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-tab {
|
||||||
|
border-color: rgb(128, 159, 245);
|
||||||
|
background-color: rgba(185, 203, 255, 0.84);
|
||||||
|
border-radius: 5px 5px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Active tabs use a bottom border color that matches the page background color. */
|
/* Active tabs use a bottom border color that matches the page background color. */
|
||||||
.about-wrap .nav-tab-active,
|
.about-wrap .nav-tab-active,
|
||||||
.nav-tab-active,
|
.nav-tab-active,
|
||||||
.nav-tab-active:hover {
|
.nav-tab-active:hover {
|
||||||
border-style: none;
|
border-style: none;
|
||||||
background-color: #fff;
|
background: linear-gradient(to right, #efefef, rgba(255, 203, 4, 0.45));
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: #fff;
|
||||||
|
box-shadow: 2px 2px 5px #c0c0c0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Admin Menu: submenu */
|
/* Admin Menu: submenu */
|
||||||
@ -101,6 +117,10 @@ body {
|
|||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -351,3 +371,23 @@ ul#adminmenu > li.current > a.current:after {
|
|||||||
width: 10pt;
|
width: 10pt;
|
||||||
color: #a0a0a0;
|
color: #a0a0a0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 720px) {
|
||||||
|
#wpbody {
|
||||||
|
padding-right: 0px;
|
||||||
|
padding-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#adminmenuback,
|
||||||
|
#adminmenuwrap,
|
||||||
|
#adminmenu {
|
||||||
|
margin-top: 12px;
|
||||||
|
background: #f0f0f0;
|
||||||
|
width: 400px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminmenuback {
|
||||||
|
box-shadow: 5px 5px 10px #c0c0c0;
|
||||||
|
}
|
||||||
|
}
|
@ -2,7 +2,7 @@
|
|||||||
/**
|
/**
|
||||||
* Plugin Name: BdP Kompass
|
* Plugin Name: BdP Kompass
|
||||||
* Description: Wordpress-Plugin zur Unterstützung von Stämmen im Bund der Pfadfinderinnen und Pfadfinder e.V. zur optimalen Verwaltung eurer Webseite
|
* Description: Wordpress-Plugin zur Unterstützung von Stämmen im Bund der Pfadfinderinnen und Pfadfinder e.V. zur optimalen Verwaltung eurer Webseite
|
||||||
* Version: 4.2.1
|
* Version: 4.3.1
|
||||||
* Tags: bdp, utility, helper
|
* Tags: bdp, utility, helper
|
||||||
* Requires at least: 6.0
|
* Requires at least: 6.0
|
||||||
* Requires PHP: 8.2
|
* Requires PHP: 8.2
|
||||||
@ -52,6 +52,7 @@ function register_custom_theme_directory() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function enqueue_custom_password_js() {
|
function enqueue_custom_password_js() {
|
||||||
|
wp_enqueue_script( 'searchable-table', BDP_LV_PLUGIN_URL . '/assets/searchtable.js');
|
||||||
wp_enqueue_script( 'custom-password-js', BDP_LV_PLUGIN_URL . 'assets/password.js');
|
wp_enqueue_script( 'custom-password-js', BDP_LV_PLUGIN_URL . 'assets/password.js');
|
||||||
wp_localize_script( 'custom-password-js', 'php_vars', [
|
wp_localize_script( 'custom-password-js', 'php_vars', [
|
||||||
'allowed_strengths' => kompass_get_minimal_password_strength(),
|
'allowed_strengths' => kompass_get_minimal_password_strength(),
|
||||||
|
@ -25,6 +25,13 @@ class WpConfigEditor extends \WP_Filesystem_Direct
|
|||||||
|
|
||||||
public function writeConfig($value): bool
|
public function writeConfig($value): bool
|
||||||
{
|
{
|
||||||
|
$value = str_replace('<?php', '', $value);
|
||||||
|
$value = str_replace('<?', '', $value);
|
||||||
|
$value = str_replace('?>', '', $value);
|
||||||
|
|
||||||
|
$value = str_replace(PHP_EOL . PHP_EOL, PHP_EOL, $value);
|
||||||
|
|
||||||
|
$value = '<?php' . PHP_EOL . $value;
|
||||||
$this->put_contents(ABSPATH . self::WP_CONFIG_FILE, $value);
|
$this->put_contents(ABSPATH . self::WP_CONFIG_FILE, $value);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -35,7 +42,7 @@ class WpConfigEditor extends \WP_Filesystem_Direct
|
|||||||
$configContent = $wfs->readConfig();
|
$configContent = $wfs->readConfig();
|
||||||
|
|
||||||
if (null === self::getConfigValue($key)) {
|
if (null === self::getConfigValue($key)) {
|
||||||
$configContent .= "define( '$key', $value );";
|
$configContent .= "define( '$key', $value );" . PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
preg_match("/define\([ ]?'($key)'\,[ ]?(.*)[ ]?\);/",$configContent, $matches);
|
preg_match("/define\([ ]?'($key)'\,[ ]?(.*)[ ]?\);/",$configContent, $matches);
|
||||||
|
@ -109,3 +109,150 @@ msgstr "Login-URL ändern"
|
|||||||
|
|
||||||
msgid "Changing the default login URL of WordPress is advisable to enhance the security of your website. By default, WordPress login URLs is /wp-admin or /wp-login.php, which are easily guessed by hackers and facilitate attacks such as brute-force attacks. Changing the login URL to something unique and difficult to guess increases security since potential attackers will struggle to find the correct URL. This can help protect your website from unauthorized access and other malicious activities."
|
msgid "Changing the default login URL of WordPress is advisable to enhance the security of your website. By default, WordPress login URLs is /wp-admin or /wp-login.php, which are easily guessed by hackers and facilitate attacks such as brute-force attacks. Changing the login URL to something unique and difficult to guess increases security since potential attackers will struggle to find the correct URL. This can help protect your website from unauthorized access and other malicious activities."
|
||||||
msgstr "Es ist ratsam, die Standard-Login-URL von WordPress zu ändern, um die Sicherheit deiner Website zu erhöhen. Standardmäßig lautet die Login-URL von WordPress /wp-admin oder /wp-login.php, was für Hacker leicht zu erraten ist und Angriffe wie Brute-Force-Attacken erleichtern kann. Durch Ändern der Login-URL auf etwas Einzigartiges und schwer zu erraten, erhöhst du die Sicherheit, da potenzielle Angreifer Schwierigkeiten haben werden, die richtige URL zu finden. Dies kann helfen, deine Website vor unautorisiertem Zugriff und anderen böswilligen Aktivitäten zu schützen."
|
msgstr "Es ist ratsam, die Standard-Login-URL von WordPress zu ändern, um die Sicherheit deiner Website zu erhöhen. Standardmäßig lautet die Login-URL von WordPress /wp-admin oder /wp-login.php, was für Hacker leicht zu erraten ist und Angriffe wie Brute-Force-Attacken erleichtern kann. Durch Ändern der Login-URL auf etwas Einzigartiges und schwer zu erraten, erhöhst du die Sicherheit, da potenzielle Angreifer Schwierigkeiten haben werden, die richtige URL zu finden. Dies kann helfen, deine Website vor unautorisiertem Zugriff und anderen böswilligen Aktivitäten zu schützen."
|
||||||
|
|
||||||
|
msgid "Login-Protection"
|
||||||
|
msgstr "Login-Sicherheit"
|
||||||
|
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
|
msgid "There are no ip addresses blocked."
|
||||||
|
msgstr "Derzeit sind keine Adressen gesperrt."
|
||||||
|
|
||||||
|
msgid "IP address"
|
||||||
|
msgstr "IP-Adresse"
|
||||||
|
|
||||||
|
msgid "Blocked until"
|
||||||
|
msgstr "Gesperrt bis"
|
||||||
|
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "Aktionen"
|
||||||
|
|
||||||
|
msgid "The settings were saved."
|
||||||
|
msgstr "Die Einstellungen wurden gespeichert."
|
||||||
|
|
||||||
|
msgid "The ip address was released."
|
||||||
|
msgstr "Die IP-Adresse wurde freigegeben."
|
||||||
|
|
||||||
|
msgid "The list was saved."
|
||||||
|
msgstr "Die Liste wurde gespeichert."
|
||||||
|
|
||||||
|
msgid "An error occured."
|
||||||
|
msgstr "Es ist ein Fehler aufgetreten"
|
||||||
|
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Optionen"
|
||||||
|
|
||||||
|
msgid "Blocklist"
|
||||||
|
msgstr "Blocklist"
|
||||||
|
|
||||||
|
msgid "Allowlist"
|
||||||
|
msgstr "Allowlist"
|
||||||
|
|
||||||
|
msgid "Blocked IP addresses"
|
||||||
|
msgstr "Gesperrte IP-Adressen"
|
||||||
|
|
||||||
|
msgid "Too many failed login attempts."
|
||||||
|
msgstr "Zu vile fehlerhafte Login-Versuche."
|
||||||
|
|
||||||
|
msgid "Please try again later."
|
||||||
|
msgstr "Bitte versuche es später erneut."
|
||||||
|
|
||||||
|
msgid "%d hour"
|
||||||
|
msgid_plural "%d hours"
|
||||||
|
msgstr[0] "%d Stunde"
|
||||||
|
msgstr[1] "%d Stunden"
|
||||||
|
|
||||||
|
|
||||||
|
msgid "Please try again in %d hour."
|
||||||
|
msgid_plural "Please try again in %d hours."
|
||||||
|
msgstr[0] "Bitte versuche es in %d Stunde noch einmal."
|
||||||
|
msgstr[1] "Bitte versuche es in %d Stunden noch einmal."
|
||||||
|
|
||||||
|
msgid "Please try again in %d minute."
|
||||||
|
msgid_plural "Please try again in %d minutes."
|
||||||
|
msgstr[0] "Bitte versuche es in %d Minute noch einmal."
|
||||||
|
msgstr[1] "Bitte versuche es in %d Minuten noch einmal."
|
||||||
|
|
||||||
|
msgid "%d minute"
|
||||||
|
msgid_plural "%d minutes"
|
||||||
|
msgstr[0] "%d Minute"
|
||||||
|
msgstr[1] "%d Minuten"
|
||||||
|
|
||||||
|
msgid "Leave blank for delete"
|
||||||
|
msgstr "Zum Löschen frei lassen"
|
||||||
|
|
||||||
|
msgid "Add ip address"
|
||||||
|
msgstr "IP-Adresse hinzufügen"
|
||||||
|
|
||||||
|
msgid "Please use line breaks to enter multiple ip addresses"
|
||||||
|
msgstr "Bitte Zeilenumbruch verwenden, um mehrere IP-Adressen einzutragen"
|
||||||
|
|
||||||
|
msgid "Maximum reps until lockout"
|
||||||
|
msgstr "Maximale Wiederholungen bis zur Sperrung"
|
||||||
|
|
||||||
|
msgid "Duration of lockout (in minutes)"
|
||||||
|
msgstr "Dauer der Sperre (in Minuten)"
|
||||||
|
|
||||||
|
msgid "Maximum number of lockouts"
|
||||||
|
msgstr "Maximale Anzahl an Sperrungen"
|
||||||
|
|
||||||
|
msgid "Long-term duration (in hours)"
|
||||||
|
msgstr "Langzeitsperre (in Stunden)"
|
||||||
|
|
||||||
|
msgid "Minimum password strength"
|
||||||
|
msgstr "Minimale Passwort-Stärke"
|
||||||
|
|
||||||
|
msgid "Page accessible via"
|
||||||
|
msgstr "Seite erreichbar über"
|
||||||
|
|
||||||
|
msgid "Handle cookies"
|
||||||
|
msgstr "Cookies verarbeiten"
|
||||||
|
|
||||||
|
msgid "Notify if blocked"
|
||||||
|
msgstr "Bei Sperrung benachrichtigen"
|
||||||
|
|
||||||
|
msgid "Failed attempts until notification"
|
||||||
|
msgstr "Fehlversuche bis zur Benachrichtigung"
|
||||||
|
|
||||||
|
msgid "E-Mail to site admin"
|
||||||
|
msgstr "E-Mail an den Webseiten-Administrator"
|
||||||
|
|
||||||
|
msgid "Direct connection"
|
||||||
|
msgstr "Direkte Verbindung"
|
||||||
|
|
||||||
|
msgid "Behind a proxy"
|
||||||
|
msgstr "Hinter einem Proxy"
|
||||||
|
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "Ja"
|
||||||
|
|
||||||
|
msgid "No"
|
||||||
|
msgstr "Nein"
|
||||||
|
|
||||||
|
msgid "Allow all password strengths"
|
||||||
|
msgstr "Alle Passwort-Stärken erlauben"
|
||||||
|
|
||||||
|
msgid "At least passwords with medium strength"
|
||||||
|
msgstr "Mindestens Passwortstärke normal"
|
||||||
|
|
||||||
|
msgid "Only allow strong passwords"
|
||||||
|
msgstr "Nur starke Passwörter erlauben"
|
||||||
|
|
||||||
|
msgid "The password does not correspond to the requirements."
|
||||||
|
msgstr "Dass Passwort entspricht nicht den Anforderungen."
|
||||||
|
|
||||||
|
msgid "Release ip address"
|
||||||
|
msgstr "IP-Adresse freigeben"
|
||||||
|
|
||||||
|
msgid "Add ip address to blocklist"
|
||||||
|
msgstr "IP-Adresse auf Blocklist setzen"
|
||||||
|
|
||||||
|
msgid "Add ip address to allowlist and release"
|
||||||
|
msgstr "IP-Adresse auf Allowlist setzen und freigeben"
|
||||||
|
|
||||||
|
msgid "Search for ip address"
|
||||||
|
msgstr "Nach IP-Adresse suchen"
|
||||||
|
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "Löschen"
|
@ -117,25 +117,24 @@ class LoginHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function composeErrorMessage() {
|
private function composeErrorMessage() {
|
||||||
$ip = $this->getAddress();
|
$ip = $this->getAddress();
|
||||||
$lockouts = get_option('kompass_limit_login_lockouts');
|
$lockouts = get_option('protect_login_limit_login_lockouts');
|
||||||
|
|
||||||
$msg = __('<strong>ERROR</strong>: Too many failed login attempts.', 'limit-login-attempts') . ' ';
|
$msg = __('Too many failed login attempts.', BDP_LV_PLUGIN_SLUG) . ' ';
|
||||||
|
|
||||||
if (!is_array($lockouts) || !isset($lockouts[$ip]) || time() >= $lockouts[$ip]) {
|
if (!is_array($lockouts) || !isset($lockouts[$ip]) || time() >= $lockouts[$ip]) {
|
||||||
/* Huh? No timeout active? */
|
/* Huh? No timeout active? */
|
||||||
$msg .= __('Please try again later.', 'limit-login-attempts');
|
$msg .= __('Please try again later.', BDP_LV_PLUGIN_SLUG);
|
||||||
return $msg;
|
return $msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
$when = ceil(($lockouts[$ip] - time()) / 60);
|
$when = ceil(($lockouts[$ip] - time()) / 60);
|
||||||
if ($when > 60) {
|
if ($when > 60) {
|
||||||
$when = ceil($when / 60);
|
$when = ceil($when / 60);
|
||||||
$msg .= sprintf(_n('Please try again in %d hour.', 'Please try again in %d hours.', $when, 'limit-login-attempts'), $when);
|
$msg .= sprintf(_n('Please try again in %d hour.', 'Please try again in %d hours.', $when, BDP_LV_PLUGIN_SLUG), $when);
|
||||||
} else {
|
} else {
|
||||||
$msg .= sprintf(_n('Please try again in %d minute.', 'Please try again in %d minutes.', $when, 'limit-login-attempts'), $when);
|
$msg .= sprintf(_n('Please try again in %d minute.', 'Please try again in %d minutes.', $when, BDP_LV_PLUGIN_SLUG), $when);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $msg;
|
return $msg;
|
||||||
|
@ -8,7 +8,7 @@ class OptionsPage
|
|||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
add_options_page(BDP_LV_PLUGIN_SLUG . '-limit-login-attempts',
|
add_options_page(BDP_LV_PLUGIN_SLUG . '-limit-login-attempts',
|
||||||
'Protect Login',
|
__('Login-Protection', BDP_LV_PLUGIN_SLUG),
|
||||||
'site-health.php',
|
'site-health.php',
|
||||||
BDP_LV_PLUGIN_SLUG . '-limit-login-attempts',
|
BDP_LV_PLUGIN_SLUG . '-limit-login-attempts',
|
||||||
[$this, 'limit_login_option_page'],2048);
|
[$this, 'limit_login_option_page'],2048);
|
||||||
@ -21,19 +21,52 @@ class OptionsPage
|
|||||||
update_option('kompass_limit_login_lockouts', $allIps);
|
update_option('kompass_limit_login_lockouts', $allIps);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function addToBlocklist(string $ip)
|
||||||
|
{
|
||||||
|
$blockedIps = get_option('kompass_limit_login_blocklist', []);
|
||||||
|
$blockedIps[] = $ip;
|
||||||
|
update_option('kompass_limit_login_blocklist', $blockedIps);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function addToAllowlist(string $ip)
|
||||||
|
{
|
||||||
|
$allowedIps = get_option('kompass_limit_login_allowlist', []);
|
||||||
|
$allowedIps[] = $ip;
|
||||||
|
update_option('kompass_limit_login_allowlist', $allowedIps);
|
||||||
|
self::releaseIp($ip);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function removeFromList(string $listType, string $ip){
|
||||||
|
update_option(
|
||||||
|
'kompass_limit_login_' . $listType,
|
||||||
|
array_diff(get_option('kompass_limit_login_' . $listType, []), [$ip])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public function getBlockedIps()
|
public function getBlockedIps()
|
||||||
{
|
{
|
||||||
$ips = '';
|
$ips = '';
|
||||||
foreach (get_option('kompass_limit_login_lockouts', []) as $ip => $blockedUntil) {
|
foreach (get_option('kompass_limit_login_lockouts', []) as $ip => $blockedUntil) {
|
||||||
$ips .= '<tr>' .
|
$ips .= '<tr style="vertical-align: top;">' .
|
||||||
'<td style="padding-right: 10px;">' . $ip . '</td>' .
|
'<td style="padding-right: 50px;">' . $ip . '</td>';
|
||||||
'<td style="padding-right: 10px;">' . date('d.m.Y H:i', $blockedUntil) . ' Uhr</td>' .
|
if (in_array($ip, get_option('protect_login_limit_login_blocklist', []))) {
|
||||||
|
$ips .= '<td style="padding-right: 50px;">Dauerhaft blockiert</td>' .
|
||||||
|
'<td>' .
|
||||||
|
'Keine Aktion möglich' .
|
||||||
|
'</td></tr>';
|
||||||
|
} else {
|
||||||
|
$ips .= '<td style="padding-right: 50px;">' . date('d.m.Y', $blockedUntil) . '<br />' . date('H:i', $blockedUntil) . ' Uhr</td>' .
|
||||||
'<td>
|
'<td>
|
||||||
<a href="admin.php?page=bdp-kompass-limit-login-attempts&tab=tab4&action=release&ip=' .
|
<a href="admin.php?page=kompass-limit-login-attempts&tab=tab4&action=release&ip=' .
|
||||||
base64_encode($ip) . '">Freigeben</a></td>' .
|
base64_encode($ip) . '">' . __('Release ip address', BDP_LV_PLUGIN_SLUG) . '</a><br />
|
||||||
'</tr>';
|
<a href="admin.php?page=bdp-kompass-limit-login-attempts&tab=tab4&action=toBlock&ip=' .
|
||||||
|
base64_encode($ip) . '">' . __('Add ip address to blocklist', BDP_LV_PLUGIN_SLUG) . '</a><br />
|
||||||
|
<a href="admin.php?page=bdp-kompass-limit-login-attempts&tab=tab4&action=toAllow&ip=' .
|
||||||
|
base64_encode($ip) . '">' . __('Add ip address to allowlist and release', BDP_LV_PLUGIN_SLUG) . '</a><br /> ' .
|
||||||
|
'</td></tr>';
|
||||||
};
|
};
|
||||||
|
}
|
||||||
return $ips;
|
return $ips;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,14 +77,14 @@ class OptionsPage
|
|||||||
|
|
||||||
if (isset($_POST['update_options'])) {
|
if (isset($_POST['update_options'])) {
|
||||||
update_settings($_POST);
|
update_settings($_POST);
|
||||||
$showMessage = 'Die Einstellungen wurden gespeichert';
|
$showMessage = __('The settings were saved.', BDP_LV_PLUGIN_SLUG);
|
||||||
}
|
}
|
||||||
if (isset($_GET['action']) && $_GET['action'] == 'release') {
|
if (isset($_GET['action']) && $_GET['action'] == 'release') {
|
||||||
$showMessage = 'Die IP-Adresse wurde freigegeben.';
|
$showMessage = __('The ip address was released.', BDP_LV_PLUGIN_SLUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST['save_kompass_balist_list_type'])) {
|
if(isset($_POST['save_kompass_balist_list_type'])) {
|
||||||
$showMessage = 'Die Liste wurde gespeichert.';
|
$showMessage = __('The list was saved.', BDP_LV_PLUGIN_SLUG);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (null !== $showMessage && $errors === false) {
|
if (null !== $showMessage && $errors === false) {
|
||||||
@ -62,15 +95,26 @@ class OptionsPage
|
|||||||
|
|
||||||
if ($errors) {
|
if ($errors) {
|
||||||
echo '<div class="notice notice-error" style="padding: 5px 10px;">';
|
echo '<div class="notice notice-error" style="padding: 5px 10px;">';
|
||||||
echo 'Beim Durchführen der Aktion ist ein Fehler aufgetreten.';
|
echo __('An error occured.', BDP_LV_PLUGIN_SLUG);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$tab = isset($_GET['tab']) ? $_GET['tab'] : 'tab1';
|
$tab = isset($_GET['tab']) ? $_GET['tab'] : 'tab1';
|
||||||
|
|
||||||
|
if (isset($_GET['action']) && $_GET['action'] == 'removeFromList') {
|
||||||
|
$this->removeFromList($_GET['list'], base64_decode($_GET['ip']));
|
||||||
|
if ($_GET['list'] == 'blocklist') {
|
||||||
|
$tab = 'tab2';
|
||||||
|
} else {
|
||||||
|
$tab = 'tab3';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<h1 class="wp-heading-inline">Protect Login - Einstellungen</h1>
|
<h1 class="wp-heading-inline">
|
||||||
|
<?= __('Login-Protection', BDP_LV_PLUGIN_SLUG); ?> - <?= __('Settings', BDP_LV_PLUGIN_SLUG); ?></h1>
|
||||||
<hr class="wp-header-end">
|
<hr class="wp-header-end">
|
||||||
<?= kompass_print_tab_header($tab); ?>
|
<?= kompass_print_tab_header($tab); ?>
|
||||||
|
|
||||||
@ -101,22 +145,39 @@ class OptionsPage
|
|||||||
if (isset($_GET['action']) && $_GET['action'] == 'release') {
|
if (isset($_GET['action']) && $_GET['action'] == 'release') {
|
||||||
$this->releaseIp(base64_decode($_GET['ip']));
|
$this->releaseIp(base64_decode($_GET['ip']));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($_GET['action']) && $_GET['action'] == 'toBlock') {
|
||||||
|
$this->addToBlocklist(base64_decode($_GET['ip']));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($_GET['action']) && $_GET['action'] == 'toAllow') {
|
||||||
|
$this->addToAllowlist(base64_decode($_GET['ip']));
|
||||||
|
}
|
||||||
$blockedIps = $this->getBlockedIps();
|
$blockedIps = $this->getBlockedIps();
|
||||||
?>
|
echo '<h2>'. __('Blocked IP addresses', BDP_LV_PLUGIN_SLUG) .'</h2>';
|
||||||
<h3>Gesperrte IPs</h3>
|
|
||||||
<?php
|
|
||||||
if (strlen($blockedIps) == 0) {
|
if (strlen($blockedIps) == 0) {
|
||||||
echo '<div class="protect-login-no-blocked-ips">';
|
echo '<div class="bdp-kompass-no-blocked-ips">';
|
||||||
echo 'Derzeit sind keine Adressen gesperrt.';
|
echo __('There are no ip addresses blocked.', BDP_LV_PLUGIN_SLUG);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
} else { ?>
|
} else { ?>
|
||||||
<table>
|
<p style="width: 100%; text-align: right">
|
||||||
|
<input type="text" id="searchInput"
|
||||||
|
onkeyup="searchTable('myTable', this)"
|
||||||
|
placeholder="<?=__('Search for ip address', BDP_LV_PLUGIN_SLUG); ?>">
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<table class="wp-list-table widefat fixed striped table-view-list" id="myTable">
|
||||||
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>IP</th>
|
<th scope="col" class="manage-column column-name"><?= __('IP address', BDP_LV_PLUGIN_SLUG); ?></th>
|
||||||
<th>Gesperrt bis</th>
|
<th class="manage-column column-name"><?= __('Blocked until', BDP_LV_PLUGIN_SLUG); ?></th>
|
||||||
<th>Aktion</th>
|
<th class="manage-column column-name"><?= __('Actions', BDP_LV_PLUGIN_SLUG); ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
<?= $blockedIps ?>
|
<?= $blockedIps ?>
|
||||||
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
function kompass_print_checkbox($settingName) {
|
function kompass_print_checkbox(string $settingName) {
|
||||||
$currentSetting = get_option($settingName, []);
|
$currentSetting = get_option($settingName, []);
|
||||||
if (!is_array($currentSetting)) {
|
if (!is_array($currentSetting)) {
|
||||||
$currentSetting = [$currentSetting];
|
$currentSetting = [$currentSetting];
|
||||||
}
|
}
|
||||||
|
|
||||||
$options = ['kompass_limit_login_lockout_notify' => [
|
$options = ['kompass_limit_login_lockout_notify' => [
|
||||||
'email' => 'E-Mail an Administrator'
|
'email' => __('E-Mail to site admin', BDP_LV_PLUGIN_SLUG)
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
function kompass_print_radio($settingName) {
|
function kompass_print_radio(string $settingName) {
|
||||||
$currentSetting = get_option($settingName);
|
$currentSetting = get_option($settingName, '');
|
||||||
$options = [
|
$options = [
|
||||||
'kompass_limit_login_client_type' => [
|
'kompass_limit_login_client_type' => [
|
||||||
'REMOTE_ADDR' => 'Direkte Verbrindung',
|
'REMOTE_ADDR' => __('Direct connection', BDP_LV_PLUGIN_SLUG),
|
||||||
'HTTP_X_FORWARDED_FOR' => 'Hinter einem Proxy'
|
'HTTP_X_FORWARDED_FOR' => __('Behind a proxy', BDP_LV_PLUGIN_SLUG)
|
||||||
],
|
],
|
||||||
'kompass_limit_login_cookies' => [
|
'kompass_limit_login_cookies' => [
|
||||||
true => 'Ja',
|
true => __('Yes', BDP_LV_PLUGIN_SLUG),
|
||||||
false => 'Nein'
|
false => __('No', BDP_LV_PLUGIN_SLUG)
|
||||||
],
|
],
|
||||||
'kompass_password_minimal_strength' => [
|
'kompass_password_minimal_strength' => [
|
||||||
'1' => 'Alle Passwörter erlauben',
|
'1' => __('Allow all password strengths', BDP_LV_PLUGIN_SLUG),
|
||||||
'2' => 'Mittelstarke Passwörter',
|
'2' => __('At least passwords with medium strength', BDP_LV_PLUGIN_SLUG),
|
||||||
'3' => 'Nur Starke Passwörter'
|
'3' => __('Only allow strong passwords', BDP_LV_PLUGIN_SLUG)
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -30,6 +30,6 @@ function kompass_print_radio($settingName) {
|
|||||||
name="' . $settingName . '"
|
name="' . $settingName . '"
|
||||||
value="' . $radioOption . '"
|
value="' . $radioOption . '"
|
||||||
id="setting_' . $settingName . '_' . $radioOption . '" />' .
|
id="setting_' . $settingName . '_' . $radioOption . '" />' .
|
||||||
'<label for="setting_' . $settingName . '_' . $radioOption . '">' . $optionText . '</label> ';
|
'<label for="setting_' . $settingName . '_' . $radioOption . '">' . $optionText . '</label><br />';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
<?php
|
<?php
|
||||||
function kompass_print_tab_header($activeTab = 'tab1')
|
function kompass_print_tab_header(string $activeTab = 'tab1')
|
||||||
{
|
{
|
||||||
$baseUrl = 'admin.php?page=bdp-kompass-limit-login-attempts&tab=';
|
$baseUrl = 'admin.php?page=bdp-kompass-limit-login-attempts&tab=';
|
||||||
return '<h2 class="nav-tab-wrapper">'.
|
return '<h2 class="nav-tab-wrapper">'.
|
||||||
'<a href="' . $baseUrl . 'tab1" class="nav-tab ' . ($activeTab == 'tab1' ? 'nav-tab-active' : '') . '">
|
'<a href="' . $baseUrl . 'tab1" class="nav-tab ' . ($activeTab == 'tab1' ? 'nav-tab-active' : '') . '">' .
|
||||||
Optionen
|
__('Options', BDP_LV_PLUGIN_SLUG) .
|
||||||
</a>'.
|
'</a>'.
|
||||||
'<a href="' . $baseUrl . 'tab2" class="nav-tab ' . ($activeTab == 'tab2' ? 'nav-tab-active' : '') .'">
|
'<a href="' . $baseUrl . 'tab2" class="nav-tab ' . ($activeTab == 'tab2' ? 'nav-tab-active' : '') .'">' .
|
||||||
Blocklist
|
__('Blocklist', BDP_LV_PLUGIN_SLUG) .
|
||||||
</a>'.
|
'</a>'.
|
||||||
'<a href="' . $baseUrl . 'tab3" class="nav-tab ' . ($activeTab == 'tab3' ? 'nav-tab-active' : '') .'">
|
'<a href="' . $baseUrl . 'tab3" class="nav-tab ' . ($activeTab == 'tab3' ? 'nav-tab-active' : '') .'">' .
|
||||||
Allowlist
|
__('Allowlist', BDP_LV_PLUGIN_SLUG) .
|
||||||
</a>'.
|
'</a>'.
|
||||||
'<a href="' . $baseUrl . 'tab4" class="nav-tab ' . ($activeTab == 'tab4' ? 'nav-tab-active' : '') .'">
|
'<a href="' . $baseUrl . 'tab4" class="nav-tab ' . ($activeTab == 'tab4' ? 'nav-tab-active' : '') .'">' .
|
||||||
Gesperrte IPs
|
__('Blocked IP addresses', BDP_LV_PLUGIN_SLUG) .
|
||||||
</a></h2>';
|
'</a></h2>';
|
||||||
}
|
}
|
@ -1,47 +1,56 @@
|
|||||||
<?php
|
<?php
|
||||||
function updateBlockOrAllowList($postVars)
|
|
||||||
|
use Bdp\Modules\LimitLoginAttempts\Controllers\OptionsPage as LimitLoginAttemptsOptions;
|
||||||
|
|
||||||
|
function updateBlockOrAllowList(array $postVars)
|
||||||
{
|
{
|
||||||
$listType = $postVars['save_kompass_balist_list_type'];
|
$listType = $postVars['save_kompass_balist_list_type'];
|
||||||
|
if (count($postVars['new_ips']) == 1) {
|
||||||
$saveIPList = [];
|
|
||||||
if (isset($postVars['listElements'])) {
|
|
||||||
foreach ($postVars['listElements'] as $curIp) {
|
|
||||||
$curIp = trim($curIp);
|
|
||||||
if ($curIp !== '') {
|
|
||||||
$saveIPList[] = $curIp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (count($postVars['new_ips']) == 1) {
|
|
||||||
foreach (explode(PHP_EOL, $postVars['new_ips'][0]) as $newIp) {
|
foreach (explode(PHP_EOL, $postVars['new_ips'][0]) as $newIp) {
|
||||||
$newIp = trim($newIp);
|
$newIp = trim($newIp);
|
||||||
if ('' !== $newIp) {
|
if ('' !== $newIp) {
|
||||||
$saveIPList[] = $newIp;
|
if ($listType == 'blocklist') {
|
||||||
|
LimitLoginAttemptsOptions::addToBlocklist($newIp);
|
||||||
|
} else {
|
||||||
|
LimitLoginAttemptsOptions::addToAllowlist($newIp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
update_option('kompass_limit_login_' . $listType, $saveIPList);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function kompass_print_block_allow_form($listType) {
|
function kompass_print_block_allow_form(string $listType) {
|
||||||
$elements = get_option('kompass_limit_login_' . $listType, []);
|
$elements = get_option('kompass_limit_login_' . $listType, []);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<input type="hidden" name="save_kompass_balist_list_type" value="<?= $listType; ?>" />
|
<input type="hidden" name="save_kompass_balist_list_type" value="<?= $listType; ?>" />
|
||||||
|
<p style="width: 100%; text-align: right">
|
||||||
|
<input type="text" id="searchInput"
|
||||||
|
onkeyup="searchTable('myTable', this)"
|
||||||
|
placeholder="<?=__('Search for ip address', BDP_LV_PLUGIN_SLUG); ?>">
|
||||||
|
</p>
|
||||||
|
<table class="wp-list-table widefat fixed striped table-view-list" id="myTable">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col" class="manage-column column-name"><?= __('IP address', BDP_LV_PLUGIN_SLUG); ?></th>
|
||||||
|
<th style="width: 100px;" class="manage-column column-name"><?= __('Actions', BDP_LV_PLUGIN_SLUG); ?></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
<?php
|
<?php
|
||||||
foreach ($elements as $currentIp) {
|
foreach ($elements as $currentIp) {
|
||||||
?>
|
echo '<tr>';
|
||||||
<p>
|
echo '<td>' . $currentIp .'</td>';
|
||||||
<input type="text" name="listElements[]" value="<?= $currentIp ?>" style="width: 350px;" /><br />
|
echo '<td><a href="admin.php?page=bdp-kompass-limit-login-attempts&action=removeFromList' .
|
||||||
<label style="cursor: default; color: #a0a0a0; fot-size: 9pt; font-style: italic"><?= __('Zum Löschen frei lassen', BDP_LV_PLUGIN_SLUG); ?></label>
|
'&list=' . $listType . '&ip=' . base64_encode($currentIp) . '">'
|
||||||
</p>
|
. __('Delete', BDP_LV_PLUGIN_SLUG) . '</a></td>';
|
||||||
<?php
|
echo '</tr>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="kompass_setting_box">
|
<div class="kompass_setting_box">
|
||||||
<h3><?= __('IP-Adresse hinzufügen', BDP_LV_PLUGIN_SLUG); ?></h3>
|
<h3><?= __('IP-Adresse hinzufügen', BDP_LV_PLUGIN_SLUG); ?></h3>
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Callback-Funktion für die Einstellungsseite
|
|
||||||
function custom_settings_section_callback() {
|
function custom_settings_section_callback() {
|
||||||
echo '<input type="hidden" name="update_options" value="true" />';
|
echo '<input type="hidden" name="update_options" value="true" />';
|
||||||
}
|
}
|
||||||
|
|
||||||
function _kompass_limit_logins_settings_callback($args) {
|
function _kompass_limit_logins_settings_callback(array $args) {
|
||||||
$setting = get_option($args['setting'], null);
|
$setting = get_option($args['setting'], null);
|
||||||
if (null === $setting) {
|
if (null === $setting) {
|
||||||
$setting = '';
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$value = esc_attr($setting);
|
$value = esc_attr($setting);
|
||||||
@ -19,22 +18,17 @@ function _kompass_limit_logins_settings_callback($args) {
|
|||||||
kompass_print_textbox($args['setting'], $value);
|
kompass_print_textbox($args['setting'], $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function _kompass_limit_logins_settings_radio_callback($args)
|
function _kompass_limit_logins_settings_radio_callback(array $args)
|
||||||
{
|
{
|
||||||
kompass_print_radio($args['setting']);
|
kompass_print_radio($args['setting']);
|
||||||
}
|
}
|
||||||
function _kompass_limit_logins_settings_checkbox_callback($args) {
|
function _kompass_limit_logins_settings_checkbox_callback(array $args) {
|
||||||
kompass_print_checkbox($args['setting']);
|
kompass_print_checkbox($args['setting']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
add_settings_section(
|
add_settings_section(
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
'Optionen',
|
__('Options', BDP_LV_PLUGIN_SLUG),
|
||||||
'custom_settings_section_callback',
|
'custom_settings_section_callback',
|
||||||
BDP_LV_PLUGIN_SLUG . '-limit-login-attempts'
|
BDP_LV_PLUGIN_SLUG . '-limit-login-attempts'
|
||||||
);
|
);
|
||||||
@ -45,7 +39,7 @@ $settings_page = BDP_LV_PLUGIN_SLUG . '-limit-login-attempts';
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_1',
|
'kompass_lla_1',
|
||||||
'Maximale Wiederholungen',
|
__('Maximum reps until lockout', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_callback',
|
'_kompass_limit_logins_settings_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -53,7 +47,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_2',
|
'kompass_lla_2',
|
||||||
'Dauer der Sperre (in Minuten)',
|
__('Duration of lockout (in minutes)', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_callback',
|
'_kompass_limit_logins_settings_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -61,7 +55,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_3',
|
'kompass_lla_3',
|
||||||
'Maximale Anzahl an Sperrungen',
|
__('Maximum number of lockouts', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_callback',
|
'_kompass_limit_logins_settings_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -69,7 +63,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_4',
|
'kompass_lla_4',
|
||||||
'Langzeitsperre in Stunden',
|
__('Long-term duration (in hours)', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_callback',
|
'_kompass_limit_logins_settings_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -77,7 +71,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_5',
|
'kompass_lla_5',
|
||||||
'Mininmale Passwort-Stärke:',
|
__('Minimum password strength', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_radio_callback',
|
'_kompass_limit_logins_settings_radio_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -85,7 +79,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_6',
|
'kompass_lla_6',
|
||||||
'Seite erreichbar über:',
|
__('Page accessible via', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_radio_callback',
|
'_kompass_limit_logins_settings_radio_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -93,7 +87,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_7',
|
'kompass_lla_7',
|
||||||
'Cookies verarbeiten',
|
__('Handle cookies', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_radio_callback',
|
'_kompass_limit_logins_settings_radio_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -101,7 +95,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_8',
|
'kompass_lla_8',
|
||||||
'Bei Sperrung benachrichtigen',
|
__('Notify if blocked', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_checkbox_callback',
|
'_kompass_limit_logins_settings_checkbox_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
@ -109,7 +103,7 @@ add_settings_field(
|
|||||||
|
|
||||||
add_settings_field(
|
add_settings_field(
|
||||||
'kompass_lla_9',
|
'kompass_lla_9',
|
||||||
'Fehlversuche bis zur Benachrichtigung',
|
__('Failed attempts until notification', BDP_LV_PLUGIN_SLUG),
|
||||||
'_kompass_limit_logins_settings_callback',
|
'_kompass_limit_logins_settings_callback',
|
||||||
$settings_page,
|
$settings_page,
|
||||||
'custom_settings_section',
|
'custom_settings_section',
|
||||||
|
@ -1,20 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
function check_for_integer($input) {
|
function check_for_integer(int $input) {
|
||||||
if (!is_numeric($input)) {
|
|
||||||
wp_die('Bitte nur Zahlen, Danke!');
|
|
||||||
}
|
|
||||||
return $input;
|
return $input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function hours_to_seconds_converter($input) {
|
function hours_to_seconds_converter(int $input) {
|
||||||
// Hier kannst du die Eingabe validieren, z.B. sicherstellen, dass es sich um eine gültige E-Mail-Adresse handelt.
|
// Hier kannst du die Eingabe validieren, z.B. sicherstellen, dass es sich um eine gültige E-Mail-Adresse handelt.
|
||||||
return minutes_to_seconds_converter($input) * 60;
|
return minutes_to_seconds_converter($input) * 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
function minutes_to_seconds_converter($input) {
|
function minutes_to_seconds_converter(int $input) {
|
||||||
|
|
||||||
// Hier kannst du die Eingabe validieren, z.B. sicherstellen, dass es sich um eine gültige E-Mail-Adresse handelt.
|
|
||||||
return check_for_integer($input) * 60;
|
return check_for_integer($input) * 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,7 +39,7 @@ function kompass_settings_validators()
|
|||||||
'check_for_integer');
|
'check_for_integer');
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_settings($postParams) {
|
function update_settings(array $postParams) {
|
||||||
$settings = ['kompass_limit_login_lockout_duration',
|
$settings = ['kompass_limit_login_lockout_duration',
|
||||||
'kompass_limit_login_allowed_retries',
|
'kompass_limit_login_allowed_retries',
|
||||||
'kompass_limit_login_allowed_lockouts',
|
'kompass_limit_login_allowed_lockouts',
|
||||||
@ -56,9 +52,9 @@ function update_settings($postParams) {
|
|||||||
|
|
||||||
foreach ($settings as $curSetting) {
|
foreach ($settings as $curSetting) {
|
||||||
if (isset($postParams[$curSetting])) {
|
if (isset($postParams[$curSetting])) {
|
||||||
update_option( $curSetting, $postParams[ $curSetting ] );
|
update_option($curSetting, $postParams[$curSetting]);
|
||||||
} else {
|
} else {
|
||||||
update_option( $curSetting, '');
|
update_option($curSetting, '');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user