PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
integrations
/
admin
<?php namespace Yoast\WP\SEO\Integrations\Admin; use Yoast\WP\SEO\Conditionals\No_Conditionals; use Yoast\WP\SEO\Helpers\Indexable_Helper; use Yoast\WP\SEO\Helpers\Options_Helper; use Yoast\WP\SEO\Integrations\Cleanup_Integration; use Yoast\WP\SEO\Integrations\Integration_Interface; /** * This integration registers a run of the cleanup routine whenever the plugin is activated. */ class Activation_Cleanup_Integration implements Integration_Interface { use No_Conditionals; /** * The indexable helper. * * @var Indexable_Helper */ protected $indexable_helper; /** * The options helper. * * @var Options_Helper */ private $options_helper; /** * Activation_Cleanup_Integration constructor. * * @param Options_Helper $options_helper The options helper. * @param Indexable_Helper $indexable_helper The indexable helper. */ public function __construct( Options_Helper $options_helper, Indexable_Helper $indexable_helper ) { $this->options_helper = $options_helper; $this->indexable_helper = $indexable_helper; } /** * Registers the action to register a cleanup routine run after the plugin is activated. * * @return void */ public function register_hooks() { \add_action( 'wpseo_activate', [ $this, 'register_cleanup_routine' ], 11 ); } /** * Registers a run of the cleanup routine if this has not happened yet. * * @return void */ public function register_cleanup_routine() { if ( ! $this->indexable_helper->should_index_indexables() ) { return; } $first_activated_on = $this->options_helper->get( 'first_activated_on', false ); if ( ! $first_activated_on || \time() > ( $first_activated_on + ( \MINUTE_IN_SECONDS * 5 ) ) ) { if ( ! \wp_next_scheduled( Cleanup_Integration::START_HOOK ) ) { \wp_schedule_single_event( ( \time() + \DAY_IN_SECONDS ), Cleanup_Integration::START_HOOK ); } } } }
[-] indexables-exclude-taxonomy-integration.php
[edit]
[-] installation-success-integration.php
[edit]
[-] fix-news-dependencies-integration.php
[edit]
[-] admin-columns-cache-integration.php
[edit]
[-] health-check-integration.php
[edit]
[-] helpscout-beacon.php
[edit]
[-] redirects-page-integration.php
[edit]
[-] workouts-integration.php
[edit]
[-] redirect-integration.php
[edit]
[+]
addon-installation
[-] indexing-tool-integration.php
[edit]
[-] migration-error-integration.php
[edit]
[-] integrations-page.php
[edit]
[-] background-indexing-integration.php
[edit]
[-] link-count-columns-integration.php
[edit]
[-] import-integration.php
[edit]
[-] brand-insights-page.php
[edit]
[-] first-time-configuration-integration.php
[edit]
[-] menu-badge-integration.php
[edit]
[-] deactivated-premium-integration.php
[edit]
[-] old-configuration-integration.php
[edit]
[-] check-required-version.php
[edit]
[-] activation-cleanup-integration.php
[edit]
[-] first-time-configuration-notice-integration.php
[edit]
[-] cron-integration.php
[edit]
[+]
..
[-] redirections-tools-page.php
[edit]
[-] indexing-notification-integration.php
[edit]
[-] crawl-settings-integration.php
[edit]