mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
28 lines
1.5 KiB
PHP
28 lines
1.5 KiB
PHP
<!-- logging tab -->
|
|
<div class="tab-pane fade" id="adblockcustom">
|
|
<h4 class="mt-3"><?php echo _("Custom blocklist"); ?></h4>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="input-group">
|
|
<input type="hidden" name="adblock-custom-enable" value="0">
|
|
<div class="custom-control custom-switch">
|
|
<input class="custom-control-input" id="adblock-custom-enable" type="checkbox" name="adblock-custom-enable" value="1" <?php echo $custom_enabled ? ' checked="checked"' : "" ?> aria-describedby="adblock-description">
|
|
<label class="custom-control-label" for="adblock-custom-enable"><?php echo _("Enable custom blocklist") ?></label>
|
|
</div>
|
|
</div>
|
|
<p id="adblock-description">
|
|
<small><?php echo _("Define custom hosts to be blocked by entering an IPv4 or IPv6 address followed by any whitespace (spaces or tabs) and the host name.") ?></small>
|
|
<small><?php echo _("<b>IPv4 example:</b> 0.0.0.0 badhost.com") ?></small>
|
|
<div>
|
|
<small class="text-muted"><?php echo _("This option adds an <code>addn-hosts</code> directive to the dnsmasq configuration.") ?></small>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="form-group col-md-8">
|
|
<?php echo '<textarea class="logoutput" name="adblock-custom-hosts">'.htmlspecialchars($adblock_custom_content, ENT_QUOTES).'</textarea>'; ?>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.tab-pane -->
|