| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/wordpress-seo/admin/links/ |
Upload File : |
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Links
*/
/**
* Represents the loader for link watcher.
*/
class WPSEO_Link_Watcher_Loader {
/**
* Loads the link watcher.
*
* @return void
*/
public function load() {
$storage = new WPSEO_Link_Storage();
$count_storage = new WPSEO_Meta_Storage();
$content_processor = new WPSEO_Link_Content_Processor( $storage, $count_storage );
$link_watcher = new WPSEO_Link_Watcher( $content_processor );
$link_watcher->register_hooks();
}
}