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 "InternalOptions.php"
Full Path: /home/zcziejy/ryadselyen/app/Lite/Options/InternalOptions.php
File size: 1.06 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace AIOSEO\Plugin\Lite\Options;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use AIOSEO\Plugin\Common\Options as CommonOptions;
use AIOSEO\Plugin\Lite\Traits;
/**
* Class that holds all internal options for AIOSEO.
*
* @since 4.0.0
*/
class InternalOptions extends CommonOptions\InternalOptions {
use Traits\Options;
/**
* Defaults options for Lite.
*
* @since 4.0.0
*
* @var array
*/
private $liteDefaults = [
// phpcs:disable WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound
'internal' => [
'activated' => [ 'type' => 'number', 'default' => 0 ],
'firstActivated' => [ 'type' => 'number', 'default' => 0 ],
'installed' => [ 'type' => 'number', 'default' => 0 ],
'connect' => [
'key' => [ 'type' => 'string' ],
'time' => [ 'type' => 'number', 'default' => 0 ],
'network' => [ 'type' => 'boolean', 'default' => false ],
'token' => [ 'type' => 'string' ]
]
]
// phpcs:enable WordPress.Arrays.ArrayDeclarationSpacing.AssociativeArrayFound
];
}