File: /home/locglobe/public_html/wp-content/plugins/wordpress-seo/admin/class-meta-table-accessible.php
<?php
/**
* @package WPSEO\Admin\Links
*/
/**
* Represents the state of the table being accessible.
*/
class WPSEO_Meta_Table_Accessible {
/**
* Checks if the given table name exists.
*
* @return bool True when table is accessible.
*/
public static function is_accessible() {
return get_transient( self::transient_name() ) === false;
}
/**
* Sets the transient value to 1, to indicate the table is not accessible.
*/
public static function set_inaccessible() {
set_transient( self::transient_name(), 1, HOUR_IN_SECONDS );
}
/**
* Checks if the table exists if not, set the transient to indicate the inaccessible table.
*
* @return bool True if table is accessible.
*/
public static function check_table_is_accessible() {
global $wpdb;
$storage = new WPSEO_Meta_Storage();
if ( $wpdb->get_var( 'SHOW TABLES LIKE "' . $storage->get_table_name() . '"' ) !== $storage->get_table_name() ) {
self::set_inaccessible();
return false;
}
return true;
}
/**
* Removes the transient.
*
* @return void
*/
public static function cleanup() {
delete_transient( self::transient_name() );
}
/**
* Returns the name of the transient.
*
* @return string The name of the transient to use.
*/
protected static function transient_name() {
return 'wpseo_meta_table_accessible';
}
}