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_link_table_accessible'; } }