shouldBackup ) { $this->shouldBackup = false; $backup = aioseo()->dynamicOptions->convertOptionsToValues( $this->backup, 'value' ); update_option( $this->optionsName, wp_json_encode( $backup ) ); } } /** * Checks whether data from the backup has to be restored. * * @since 4.1.3 * * @return void */ public function init() { $this->postTypes = wp_list_pluck( aioseo()->helpers->getPublicPostTypes( false, false, true ), 'name' ); $this->taxonomies = wp_list_pluck( aioseo()->helpers->getPublicTaxonomies( false, true ), 'name' ); $this->archives = wp_list_pluck( aioseo()->helpers->getPublicPostTypes( false, true, true ), 'name' ); $backup = json_decode( get_option( $this->optionsName ), true ); if ( empty( $backup ) ) { update_option( $this->optionsName, '{}' ); return; } $this->backup = $backup; $this->options = aioseo()->dynamicOptions->getDefaults(); $this->restorePostTypes(); $this->restoreTaxonomies(); $this->restoreArchives(); } /** * Restores the dynamic Post Types options. * * @since 4.1.3 * * @return void */ protected function restorePostTypes() { foreach ( $this->postTypes as $postType ) { // Restore the post types for Search Appearance. if ( ! empty( $this->backup['postTypes'][ $postType ]['searchAppearance'] ) ) { $this->restoreOptions( $this->backup['postTypes'][ $postType ]['searchAppearance'], [ 'searchAppearance', 'postTypes', $postType ] ); unset( $this->backup['postTypes'][ $postType ]['searchAppearance'] ); $this->shouldBackup = true; } // Restore the post types for Social Networks. if ( ! empty( $this->backup['postTypes'][ $postType ]['social']['facebook'] ) ) { $this->restoreOptions( $this->backup['postTypes'][ $postType ]['social']['facebook'], [ 'social', 'facebook', 'general', 'postTypes', $postType ] ); unset( $this->backup['postTypes'][ $postType ]['social']['facebook'] ); $this->shouldBackup = true; } } } /** * Restores the dynamic Taxonomies options. * * @since 4.1.3 * * @return void */ protected function restoreTaxonomies() { foreach ( $this->taxonomies as $taxonomy ) { // Restore the taxonomies for Search Appearance. if ( ! empty( $this->backup['taxonomies'][ $taxonomy ]['searchAppearance'] ) ) { $this->restoreOptions( $this->backup['taxonomies'][ $taxonomy ]['searchAppearance'], [ 'searchAppearance', 'taxonomies', $taxonomy ] ); unset( $this->backup['taxonomies'][ $taxonomy ]['searchAppearance'] ); $this->shouldBackup = true; } // Restore the taxonomies for Social Networks. if ( ! empty( $this->backup['taxonomies'][ $taxonomy ]['social']['facebook'] ) ) { $this->restoreOptions( $this->backup['taxonomies'][ $taxonomy ]['social']['facebook'], [ 'social', 'facebook', 'general', 'taxonomies', $taxonomy ] ); unset( $this->backup['taxonomies'][ $taxonomy ]['social']['facebook'] ); $this->shouldBackup = true; } } } /** * Restores the dynamic Archives options. * * @since 4.1.3 * * @return void */ protected function restoreArchives() { foreach ( $this->archives as $postType ) { // Restore the archives for Search Appearance. if ( ! empty( $this->backup['archives'][ $postType ]['searchAppearance'] ) ) { $this->restoreOptions( $this->backup['archives'][ $postType ]['searchAppearance'], [ 'searchAppearance', 'archives', $postType ] ); unset( $this->backup['archives'][ $postType ]['searchAppearance'] ); $this->shouldBackup = true; } } } /** * Restores the backuped options. * * @since 4.1.3 * * @return void * @param array $backupOptions The options to be restored. * @param array $groups The group that the option should be restored. */ protected function restoreOptions( $backupOptions, $groups ) { $groupPath = $this->options; foreach ( $groups as $group ) { if ( ! isset( $groupPath[ $group ] ) ) { return false; } $groupPath = $groupPath[ $group ]; } $options = aioseo()->dynamicOptions->noConflict(); foreach ( $backupOptions as $setting => $value ) { // Check if the option exists by checking if the type is defined. $type = ! empty( $groupPath[ $setting ]['type'] ) ? $groupPath[ $setting ]['type'] : ''; if ( ! $type ) { continue; } foreach ( $groups as $group ) { $options = $options->$group; } $options->$setting = $value; } } /** * Maybe backup the options if it has disappeared. * * @since 4.1.3 * * @param array $newOptions An array of options to check. * @return void */ public function maybeBackup( $newOptions ) { $this->maybeBackupPostType( $newOptions ); $this->maybeBackupTaxonomy( $newOptions ); $this->maybeBackupArchives( $newOptions ); } /** * Maybe backup the Post Types. * * @since 4.1.3 * * @param array $newOptions An array of options to check. * @return void */ protected function maybeBackupPostType( $newOptions ) { // Maybe backup the post types for Search Appearance. foreach ( $newOptions['searchAppearance']['postTypes'] as $dynamicPostTypeName => $dynamicPostTypeSettings ) { $found = in_array( $dynamicPostTypeName, $this->postTypes, true ); if ( ! $found ) { $this->backup['postTypes'][ $dynamicPostTypeName ]['searchAppearance'] = $dynamicPostTypeSettings; $this->shouldBackup = true; } } // Maybe backup the post types for Social Networks. foreach ( $newOptions['social']['facebook']['general']['postTypes'] as $dynamicPostTypeName => $dynamicPostTypeSettings ) { $found = in_array( $dynamicPostTypeName, $this->postTypes, true ); if ( ! $found ) { $this->backup['postTypes'][ $dynamicPostTypeName ]['social']['facebook'] = $dynamicPostTypeSettings; $this->shouldBackup = true; } } } /** * Maybe backup the Taxonomies. * * @since 4.1.3 * * @param array $newOptions An array of options to check. * @return void */ protected function maybeBackupTaxonomy( $newOptions ) { // Maybe backup the taxonomies for Search Appearance. foreach ( $newOptions['searchAppearance']['taxonomies'] as $dynamicTaxonomyName => $dynamicTaxonomySettings ) { $found = in_array( $dynamicTaxonomyName, $this->taxonomies, true ); if ( ! $found ) { $this->backup['taxonomies'][ $dynamicTaxonomyName ]['searchAppearance'] = $dynamicTaxonomySettings; $this->shouldBackup = true; } } } /** * Maybe backup the Archives. * * @since 4.1.3 * * @param array $newOptions An array of options to check. * @return void */ protected function maybeBackupArchives( $newOptions ) { // Maybe backup the archives for Search Appearance. foreach ( $newOptions['searchAppearance']['archives'] as $archiveName => $archiveSettings ) { $found = in_array( $archiveName, $this->archives, true ); if ( ! $found ) { $this->backup['archives'][ $archiveName ]['searchAppearance'] = $archiveSettings; $this->shouldBackup = true; } } } }