23 lines
1011 B
PHP
23 lines
1011 B
PHP
|
<h2><?= __('Bot Detection Database', BDP_LV_PLUGIN_SLUG); ?></h2>
|
||
|
<div class="pwp_setting_box">
|
||
|
<h3><?= __('Registered bots', BDP_LV_PLUGIN_SLUG); ?></h3>
|
||
|
<?php
|
||
|
foreach (get_prohibitedbot_list() as $currenBot) {
|
||
|
?>
|
||
|
<p style=" margin: 10px auto; width: 80%;">
|
||
|
<input type="text" name="existing_bots[]" value="<?= $currenBot ?>" style="width: 100%;" /><br />
|
||
|
<label style="cursor: default; color: #a0a0a0; fot-size: 9pt; font-style: italic"><?= __('Leave blank in order to delete', BDP_LV_PLUGIN_SLUG); ?></label>
|
||
|
</p>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
<div class="pwp_setting_box">
|
||
|
<h3><?= __('Add more bots', BDP_LV_PLUGIN_SLUG); ?></h3>
|
||
|
<p style=" margin: 10px auto; width: 80%;">
|
||
|
<textarea placeholder="<?= __('Please use line breaks to enter multiple bots', BDP_LV_PLUGIN_SLUG); ?>" name="new_bots[]" style="width: 100%;" rows="10"></textarea>
|
||
|
</p>
|
||
|
</div>
|
||
|
<br /><br />
|
||
|
<input type="submit" class="button" value="<?= __('Save changes', BDP_LV_PLUGIN_SLUG); ?>" />
|