vasadibt/yii2-protector
Composer 安装命令:
composer require vasadibt/yii2-protector
包简介
Hide emails and phone numbers from spam robots
README 文档
README
Hide emails and phone numbers from spam robots
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist vasadibt/yii2-protector "*"
or add
"vasadibt/yii2-protector": "*"
to the require section of your composer.json file.
Configuration
A simple example to integrate module.
'bootstrap' => [ // ... 'protector', ], 'components' => [ // ... 'protector' => [ 'class' => '\vasadibt\protector\ProtectData', ], ],
Usage
Once the extension is installed, simply use it in your code by by html format:
<h2>Contact</h2> <a href="tel:[[protect:0036 70 1111 222]]">[[protect:0036 70 1111 222]]</a> <a href="mailto:[[protect:info@mycompany.com]]">[[protect:info@mycompany.com]]</a> <h3>Write to me<span class="email">[[protect:info@company.com]]</span></h3>
Or use php helpers
<?= Yii::$app->protector->tel('0036 70 1111 222') ?> <?= Yii::$app->protector->mailto('info@company.com') ?> <span><?= Yii::$app->protector->protect('0036 70 1111 222') ?></span>
Features
Auto detect mode
If you want to use Auto Detect mode then turn on:
'protector' => [ 'class' => '\vasadibt\protector\ProtectData', 'enableAutoDetect' => 'true', 'autoDetectPatterns' => [ // Optional you can use custom regex list "/[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/U", // etc ... ], 'autoDetectMatchCallback' => function($match){ // Optional, if you want to validate match return $match != 'bad@match.com'; }, ],
Plugin turn off
If you want to disable plugin then set enable false:
<?php Yii::$app->protector->enable = false; ?>
Plugin debug
If you want to view key value paired generated list than enable debug mode and show javascript protectorDebug variable in html inspector:
<?php Yii::$app->protector->debug = true; ?>
console.log(protectorDebug);
统计信息
- 总下载量: 131
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2020-05-26