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_Service. * * @deprecated 12.5 * * @codeCoverageIgnore */ class WPSEO_GSC_Service { /** * Search Console service constructor. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $profile Profile name. */ public function __construct( $profile = '' ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Returns the client. * * @deprecated 12.5 * * @codeCoverageIgnore * * @return Yoast_Api_Google_Client */ public function get_client() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return null; } /** * Removes the option and calls the clients clear_data method to clear that one as well. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function clear_data() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Get all sites that are registered in the GSC panel. * * @deprecated 12.5 * * @codeCoverageIgnore * * @return array */ public function get_sites() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return []; } /** * Get crawl issues. * * @deprecated 12.5 * * @codeCoverageIgnore * * @return array */ public function get_crawl_issue_counts() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return []; } /** * Sending request to mark issue as fixed. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $url Issue URL. * @param string $platform Platform (desktop, mobile, feature phone). * @param string $category Issue type. * * @return bool */ public function mark_as_fixed( $url, $platform, $category ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return false; } /** * Fetching the issues from the GSC API. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $platform Platform (desktop, mobile, feature phone). * @param string $category Issue type. * * @return mixed */ public function fetch_category_issues( $platform, $category ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return []; } }
[+]
..
[-] 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]