| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/wordpress-seo/inc/ |
Upload File : |
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Internals
* @since 3.6
*/
/**
* This class checks if the wpseo option doesn't exists. In the case it doesn't it will set a property that is
* accessible via a method to check if the installation is fresh.
*/
class WPSEO_Installation {
/**
* Checks if Yoast SEO is installed for the first time.
*/
public function __construct() {
$is_first_install = $this->is_first_install();
if ( $is_first_install && WPSEO_Utils::is_api_available() ) {
add_action( 'wpseo_activate', array( $this, 'set_first_install_options' ) );
}
}
/**
* When the option doesn't exist, it should be a new install.
*
* @return bool
*/
private function is_first_install() {
return ( get_option( 'wpseo' ) === false );
}
/**
* Sets the options on first install for showing the installation notice and disabling of the settings pages.
*/
public function set_first_install_options() {
$options = get_option( 'wpseo' );
$options['show_onboarding_notice'] = true;
$options['first_activated_on'] = time();
update_option( 'wpseo', $options );
}
}