X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/wordpress-seo/inc
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
inc
/
📁
..
📄
class-addon-manager.php
(26.21 KB)
📄
class-my-yoast-api-request.php
(4.77 KB)
📄
class-post-type.php
(3.89 KB)
📄
class-rewrite.php
(7.58 KB)
📄
class-upgrade-history.php
(3.04 KB)
📄
class-upgrade.php
(55.17 KB)
📄
class-wpseo-admin-bar-menu.php
(26.55 KB)
📄
class-wpseo-content-images.php
(2.62 KB)
📄
class-wpseo-custom-fields.php
(1.73 KB)
📄
class-wpseo-custom-taxonomies.php
(1.59 KB)
📄
class-wpseo-image-utils.php
(15.09 KB)
📄
class-wpseo-installation.php
(1.11 KB)
📄
class-wpseo-meta.php
(34.17 KB)
📄
class-wpseo-primary-term.php
(1.7 KB)
📄
class-wpseo-rank.php
(7.37 KB)
📄
class-wpseo-replace-vars.php
(51.41 KB)
📄
class-wpseo-replacement-variable.php
(1.34 KB)
📄
class-wpseo-shortlinker.php
(1.11 KB)
📄
class-wpseo-statistics.php
(1.41 KB)
📄
class-wpseo-utils.php
(28.49 KB)
📄
class-yoast-dynamic-rewrites.php
(5.24 KB)
📄
date-helper.php
(1.71 KB)
📁
exceptions
📄
index.php
(38 B)
📄
interface-wpseo-wordpress-ajax-integration.php
(294 B)
📄
interface-wpseo-wordpress-integration.php
(348 B)
📄
language-utils.php
(1.28 KB)
📁
options
📁
sitemaps
📄
wpseo-functions-deprecated.php
(68 B)
📄
wpseo-functions.php
(9 KB)
📄
wpseo-non-ajax-functions.php
(1.56 KB)
Editing: class-upgrade-history.php
<?php /** * WPSEO plugin file. * * @package WPSEO\Internal */ /** * This class handles storing the current options for future reference. * * This should only be used during an upgrade routine. */ class WPSEO_Upgrade_History { /** * Option to use to store/retrieve data from. * * @var string */ protected $option_name = 'wpseo_upgrade_history'; /** * WPSEO_Upgrade_History constructor. * * @param string|null $option_name Optional. Custom option to use to store/retrieve history from. */ public function __construct( $option_name = null ) { if ( $option_name !== null ) { $this->option_name = $option_name; } } /** * Retrieves the content of the history items currently stored. * * @return array<array<string>> The contents of the history option. */ public function get() { $data = get_option( $this->get_option_name(), [] ); if ( ! is_array( $data ) ) { return []; } return $data; } /** * Adds a new history entry in the storage. * * @param string $old_version The version we are upgrading from. * @param string $new_version The version we are upgrading to. * @param array<string> $option_names The options that need to be stored. * * @return void */ public function add( $old_version, $new_version, array $option_names ) { $option_data = []; if ( $option_names !== [] ) { $option_data = $this->get_options_data( $option_names ); } // Retrieve current history. $data = $this->get(); // Add new entry. $data[ time() ] = [ 'options' => $option_data, 'old_version' => $old_version, 'new_version' => $new_version, ]; // Store the data. $this->set( $data ); } /** * Retrieves the data for the specified option names from the database. * * @param array<string> $option_names The option names to retrieve. * * @return array<int|string, array<string|int|bool|float>> The retrieved data. */ protected function get_options_data( array $option_names ) { $wpdb = $this->get_wpdb(); $results = $wpdb->get_results( $wpdb->prepare( ' SELECT %i, %i FROM ' . $wpdb->options . ' WHERE %i IN ( ' . implode( ',', array_fill( 0, count( $option_names ), '%s' ) ) . ' ) ', array_merge( [ 'option_value', 'option_name', 'option_name' ], $option_names ) ), ARRAY_A ); $data = []; foreach ( $results as $result ) { $data[ $result['option_name'] ] = maybe_unserialize( $result['option_value'] ); } return $data; } /** * Stores the new history state. * * @param array<array<string>> $data The data to store. * * @return void */ protected function set( array $data ) { // This should not be autoloaded! update_option( $this->get_option_name(), $data, false ); } /** * Retrieves the WPDB object. * * @return wpdb The WPDB object to use. */ protected function get_wpdb() { global $wpdb; return $wpdb; } /** * Retrieves the option name to store the history in. * * @return string The option name to store the history in. */ protected function get_option_name() { return $this->option_name; } }
Upload File
Create Folder