| Server IP : 198.38.94.13 / Your IP : 216.73.217.33 Web Server : Apache System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : revivere ( 1140) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/revivere/www/wp-content/plugins/broken-link-checker/core/ |
Upload File : |
<?php
/**
* Class is called upon plugin activation.
*
* @link https://wordpress.org/plugins/broken-link-checker/
* @since 2.0.0
*
* @author WPMUDEV (https://wpmudev.com)
* @package WPMUDEV_BLC\Core
*
* @copyright (c) 2022, Incsub (http://incsub.com)
*/
namespace WPMUDEV_BLC\Core;
// If this file is called directly, abort.
defined( 'WPINC' ) || die;
use WPMUDEV_BLC\Core\Utils\Abstracts\Base;
/**
* Class WPMUDEV_BLC
*
* @package WPMUDEV_BLC\Core
*/
final class Activation extends Base {
/**
* Activation hooks.
*
* @return void
* @since 2.0.0
*/
protected function __construct() {
\WPMUDEV_BLC\wpmudev_blc_instance();
do_action( 'wpmudev_blc_plugin_activated' );
set_transient( 'blc_activation_redirect', true, 30 );
}
}