| 1: | <?php |
| 2: | |
| 3: | /** |
| 4: | * Class protector_crawler_overrun_message |
| 5: | */ |
| 6: | class Protector_crawler_overrun_message extends ProtectorFilterAbstract |
| 7: | { |
| 8: | public function execute() |
| 9: | { |
| 10: | // header( 'Location: http://google.com/' ) ; // redirect somewhere |
| 11: | echo 'You have accessed too many times while short term'; // write any message as you like |
| 12: | exit; |
| 13: | } |
| 14: | } |
| 15: |