PHP code example of martyn911 / yii2-adblock-detector

1. Go to this page and download the library: Download martyn911/yii2-adblock-detector library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

martyn911 / yii2-adblock-detector example snippets


use martyn911\adblock\detector\Detector;

echo Detector::widget();

echo Detector::widget([
    'timeout' => 200, //Число миллисекунд, в конце которых считается, что AdBlock не включен
    'callback_detected' => 'adBlockDetected', //js функция, которая выполняется если adblock включен
    'callback_not_detected' => 'adBlockNotDetected', //js функция, которая выполняется если adblock не включен. Можно отключить - false
]);