| Server IP : 68.178.247.200 / Your IP : 216.73.217.16 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wordpress-seo/src/integrations/watchers/ |
Upload File : |
<?php
namespace Yoast\WP\SEO\Integrations\Watchers;
use Yoast\WP\SEO\Conditionals\No_Conditionals;
use Yoast\WP\SEO\Integrations\Integration_Interface;
/**
* Watcher for the wpseo option.
*
* Represents the option wpseo watcher.
*/
class Option_Wpseo_Watcher implements Integration_Interface {
use No_Conditionals;
/**
* Initializes the integration.
*
* This is the place to register hooks and filters.
*
* @return void
*/
public function register_hooks() {
\add_action( 'update_option_wpseo', [ $this, 'check_semrush_option_disabled' ], 10, 2 );
\add_action( 'update_option_wpseo', [ $this, 'check_wincher_option_disabled' ], 10, 2 );
}
/**
* Checks if the SEMrush integration is disabled; if so, deletes the tokens.
*
* We delete the tokens if the SEMrush integration is disabled, no matter if
* the value has actually changed or not.
*
* @param array $old_value The old value of the option.
* @param array $new_value The new value of the option.
*
* @return bool Whether the SEMrush tokens have been deleted or not.
*/
public function check_semrush_option_disabled( $old_value, $new_value ) {
return $this->check_token_option_disabled( 'semrush_integration_active', 'semrush_tokens', $new_value );
}
/**
* Checks if the Wincher integration is disabled; if so, deletes the tokens
* and website id.
*
* We delete them if the Wincher integration is disabled, no matter if the
* value has actually changed or not.
*
* @param array $old_value The old value of the option.
* @param array $new_value The new value of the option.
*
* @return bool Whether the Wincher tokens have been deleted or not.
*/
public function check_wincher_option_disabled( $old_value, $new_value ) {
$disabled = $this->check_token_option_disabled( 'wincher_integration_active', 'wincher_tokens', $new_value );
if ( $disabled ) {
\YoastSEO()->helpers->options->set( 'wincher_website_id', '' );
}
return $disabled;
}
/**
* Checks if the passed integration is disabled; if so, deletes the tokens.
*
* We delete the tokens if the integration is disabled, no matter if
* the value has actually changed or not.
*
* @param string $integration_option The intergration option name.
* @param string $target_option The target option to remove the tokens from.
* @param array $new_value The new value of the option.
*
* @return bool Whether the tokens have been deleted or not.
*/
protected function check_token_option_disabled( $integration_option, $target_option, $new_value ) {
if ( \array_key_exists( $integration_option, $new_value ) && $new_value[ $integration_option ] === false ) {
\YoastSEO()->helpers->options->set( $target_option, [] );
return true;
}
return false;
}
}