PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
wordpress-seo
/
deprecated
/
admin
/
google-search-console
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Google_Search_Console */ /** * Class WPSEO_GSC_Ajax. * * @deprecated 12.5 * * @codeCoverageIgnore */ class WPSEO_GSC_Ajax { /** * Setting the AJAX hooks for GSC. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function __construct() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * This method will be access by an AJAX request and will mark an issue as fixed. * * First it will do a request to the Google API. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function ajax_mark_as_fixed() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Handle the AJAX request and dismiss the GSC notice. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function dismiss_notice() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Saves the authorization code. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function save_auth_code() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Clears all authorization data. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function clear_auth_code() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Check if posted nonce is valid and return true if it is. * * @deprecated 12.5 * * @codeCoverageIgnore * * @return mixed */ private function valid_nonce() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Returns an instance of the Google Search Console service. * * @deprecated 12.5 * * @codeCoverageIgnore * * @return WPSEO_GSC_Service */ private function get_service() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return null; } /** * Prints a JSON encoded string with the current profile config. * * @deprecated 12.5 * * @codeCoverageIgnore */ private function get_profiles() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } }
[+]
..
[-] class-gsc-mapper.php
[edit]
[-] class-gsc-issue.php
[edit]
[-] class-gsc-issues.php
[edit]
[-] class-gsc-count.php
[edit]
[-] class-gsc-marker.php
[edit]
[-] class-gsc-table.php
[edit]
[-] class-gsc-modal.php
[edit]
[-] class-gsc-ajax.php
[edit]
[-] class-gsc-settings.php
[edit]
[-] class-gsc-config.php
[edit]
[-] class-gsc-service.php
[edit]
[-] class-gsc-platform-tabs.php
[edit]
[-] class-gsc-bulk-action.php
[edit]
[-] class-gsc-category-filters.php
[edit]