PHP Classes

File: src/Resources/contao/templates/modules/mod_spambot.html5

Recommend this page to a friend!
  Classes of stefan   contao PHP Spambot Detection   src/Resources/contao/templates/modules/mod_spambot.html5   Download  
File: src/Resources/contao/templates/modules/mod_spambot.html5
Role: Example script
Content type: text/plain
Description: Example script
Class: contao PHP Spambot Detection
Detect and block spam bots from accessing sites
Author: By
Last change:
Date: 1 year ago
Size: 1,250 bytes
 

Contents

Class file image Download
<!-- SpamBot::start -->
<!-- indexer::stop -->
<?php if ($this->Typ == syncgw\SpamBotBundle\Module\SpamBot::$Status[syncgw\SpamBotBundle\Module\SpamBot::SPAM] || $this->Typ == syncgw\SpamBotBundle\Module\SpamBot::$Status[syncgw\SpamBotBundle\Module\SpamBot::BLACKL]): ?>
<p class="spambot_error">
        {{iflng::en}}Dear visitor,<br />
            unfortunately we identified your IP address "<?php echo $this->clientIP; ?>" as beeing suspicious ("<?php echo $this->Typ; ?>").<br />
            Returned status is "<?php echo $this->Status ?>"<br />
            If you feel this is incorrect, please let us know and we will enable your access to this page immediately.<br />
            Please apologize for the inconvenience.{{iflng}}
        {{iflng::de}}Lieber Besucher,<br />
            ungl&uuml;cklicher Weise wurde ihre IP Adresse "<?php echo $this->clientIP; ?>" als verd&auml;chtig identifiziert ("<?php echo $this->Typ; ?>").<br />
            Der Status ist "<?php echo $this->Status ?>"<br />
            Wenn sie der Meinung sind, dies sei inkorrekt, dann lassen sie es uns bitte wissen und wir werden ihnen den Zugriff auf diese Seite unverz&uuml;glich erm&ouml;glichen.<br />
            Bitte entschuldigen sie die Unannehmlichkeit.{{iflng}}
    </p>
<?php endif; ?>
<!-- indexer::continue -->
<!-- SpamBot::end -->