Файловый менеджер - Редактировать - /home/beautybuzzbeyond/public_html/wp-content/plugins/all-in-one-seo-pack/app/Common/Utils/Backup.php
Назад
<?php namespace AIOSEO\Plugin\Common\Utils; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Backup for AIOSEO Settings. * * @since 4.0.0 */ class Backup { /** * A the name of the option to save backups with. * * @since 4.00 * * @var string */ private $optionsName = 'aioseo_settings_backup'; /** * Get all backups. * * @return array An array of backups. */ public function all() { $backups = json_decode( get_option( $this->optionsName ), true ); if ( empty( $backups ) ) { $backups = []; } return $backups; } /** * Creates a backup of the settings state. * * @since 4.0.0 * * @return void */ public function create() { $backupTime = time(); $options = $this->getOptions(); update_option( $this->optionsName . '_' . $backupTime, wp_json_encode( $options ) ); $backups = $this->all(); $backups[] = $backupTime; update_option( $this->optionsName, wp_json_encode( $backups ) ); } /** * Deletes a backup of the settings. * * @since 4.0.0 * * @return void */ public function delete( $backupTime ) { delete_option( $this->optionsName . '_' . $backupTime ); $backups = $this->all(); foreach ( $backups as $key => $backup ) { if ( $backup === $backupTime ) { unset( $backups[ $key ] ); } } update_option( $this->optionsName, wp_json_encode( array_values( $backups ) ) ); } /** * Restores a backup of the settings. * * @since 4.0.0 * * @return void */ public function restore( $backupTime ) { $backup = json_decode( get_option( $this->optionsName . '_' . $backupTime ), true ); aioseo()->options->sanitizeAndSave( $backup['options'] ); aioseo()->internalOptions->sanitizeAndSave( $backup['internalOptions'] ); } /** * Get the options to save. * * @since 4.0.0 * * @return array An array of options to save. */ private function getOptions() { return [ 'options' => aioseo()->options->all(), 'internalOptions' => aioseo()->internalOptions->all() ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка