/home/techb158/public_html/wp-content/plugins/wordpress-seo/src/actions
NameSizeModeActions
addon-installation/-0755rm
configuration/-0755rm
importing/-0755rm
indexables/-0755rm
indexing/-0755rm
semrush/-0755rm
wincher/-0755rm
alert-dismissal-action.php55020644editdlrm
integrations-action.php12700644editdlrm
Edit: /home/techb158/public_html/wp-content/plugins/wordpress-seo/src/actions/integrations-action.php (1270B)
options_helper = $options_helper; } /** * Sets an integration state. * * @param string $integration_name The name of the integration to activate/deactivate. * @param bool $value The value to store. * * @return object The response object. */ public function set_integration_active( $integration_name, $value ) { $option_name = $integration_name . '_integration_active'; $success = true; $option_value = $this->options_helper->get( $option_name ); if ( $option_value !== $value ) { $success = $this->options_helper->set( $option_name, $value ); } if ( $success ) { return (object) [ 'success' => true, 'status' => 200, ]; } return (object) [ 'success' => false, 'status' => 500, 'error' => 'Could not save the option in the database', ]; } }