| 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/legacy/includes/ |
Upload File : |
<?php /** * Load all files pertaining to BLC's module subsystem */ require 'module-manager.php'; require 'module-base.php'; require 'containers.php'; require 'checkers.php'; require 'parsers.php'; $blc_module_manager = blcModuleManager::getInstance( array( //List of modules active by default 'http', //Link checker for the HTTP(s) protocol 'link', //HTML link parser 'image', //HTML image parser 'metadata', //Metadata (custom field) parser 'url_field', //URL field parser 'comment', //Comment container 'custom_field', //Post metadata container (aka custom fields) 'acf_field', //Post acf container (aka advanced custom fields) 'acf', //acf parser 'post', //Post content container 'page', //Page content container 'youtube-checker', //Video checker using the YouTube API 'youtube-iframe', //Embedded YouTube video container 'dummy', //Dummy container used as a fallback 'custom_taxonomy', //Custom taxonomy container ) ); require 'any-post.php'; //Let other plugins register virtual modules. do_action( 'blc_register_modules', $blc_module_manager );