PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
config
<?php /** * Loads the integrations needed by the WordPress Admin. * * @package Yoast\YoastSEO\Config */ namespace Yoast\WP\Free\Config; use Yoast\WP\Free\Watchers; use Yoast\WP\Free\WordPress\Integration; use Yoast\WP\Free\WordPress\Integration_Group; /** * Load Admin integrations. */ class Admin implements Integration { /** * Initializes the integration. * * This is the place to register hooks and filters. * * @codeCoverageIgnore * * @return void */ public function register_hooks() { $integration_group = new Integration_Group( array( new Watchers\Indexable_Post_Watcher(), new Watchers\Indexable_Term_Watcher(), new Watchers\Indexable_Author_Watcher(), new Watchers\Primary_Term_Watcher(), ) ); $integration_group->register_hooks(); } }
[+]
..
[-] plugin.php
[edit]
[-] database-migration.php
[edit]
[-] dependency-management.php
[edit]
[-] upgrade.php
[edit]
[-] frontend.php
[edit]
[-] admin.php
[edit]