This commit is contained in:
KhaiNguyen
2020-02-13 10:39:37 +07:00
commit 59401cb805
12867 changed files with 4646216 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?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();
}
}