kompass/modules/LimitLoginAttempts/Views/text-element.php

8 lines
256 B
PHP
Raw Normal View History

2024-02-26 14:47:51 +01:00
<?php
function kompass_print_textbox($settingName, $settingValue) {
echo '<input type="text" name="' . $settingName . '" value="' . $settingValue. '" />';
if (defined('WP_DEBUG') && WP_DEBUG == true) {
echo '<br />' . $settingName;
}
}