ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "SearchAppearance.php"
Full Path: /home/zcziejy/ryadselyen/app/Common/ImportExport/SearchAppearance.php
File size: 861 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace AIOSEO\Plugin\Common\ImportExport;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Migrates the Search Appearance settings.
*
* @since 4.0.0
*/
abstract class SearchAppearance {
/**
* The schema graphs we support.
*
* @since 4.0.0
*
* @var array
*/
public static $supportedSchemaGraphs = [
'none',
'WebPage',
'Article'
];
/**
* The WebPage graphs we support.
*
* @since 4.0.0
*
* @var array
*/
public static $supportedWebPageGraphs = [
'AboutPage',
'CollectionPage',
'ContactPage',
'FAQPage',
'ItemPage',
'ProfilePage',
'RealEstateListing',
'SearchResultsPage',
'WebPage'
];
/**
* The Article graphs we support.
*
* @since 4.0.0
*
* @var array
*/
public static $supportedArticleGraphs = [
'Article',
'BlogPosting',
'NewsArticle'
];
}