'', 'home' => '', 'upload_path' => '', 'fileupload_url' => '', 'upload_url_path' => '', 'admin_email' => '', 'blogname' => '', 'schema-ActionScheduler_Abstract_Schema' => '', 'action_scheduler_hybrid_store_demarkation' => '', 'schema-ActionScheduler_StoreSchema' => '', 'schema-ActionScheduler_LoggerSchema' => '', 'action_scheduler_lock_async-request-runner' => '', ]; } /** * Get filtered options that should be preserved in the new blog. * * @since 0.2.0 * @return array of string (filtered) */ public static function get_saved_option() { return apply_filters('mucd_copy_blog_data_saved_options', self::get_default_saved_option()); } /** * Get default fields to scan for an update after data copy * * @since 0.2.0 * @return array '%table_name' => array('%field_name_1','%field_name_2','%field_name_3', ...) */ public static function get_default_fields_to_update() { return [ 'commentmeta' => [], 'comments' => [], 'links' => ['link_url', 'link_image'], 'options' => ['option_name', 'option_value'], 'postmeta' => ['meta_value'], 'posts' => ['post_content', 'guid', 'post_title', 'post_name'], 'terms' => [], 'term_relationships' => [], 'term_taxonomy' => [], ]; } /** * Get filtered fields to scan for an update after data copy * * @since 0.2.0 * @return array of string (filtered) */ public static function get_fields_to_update() { return apply_filters('mucd_default_fields_to_update', self::get_default_fields_to_update()); } /** * Get default tables to duplicate when duplicated site is primary site * * @since 0.2.0 * @return array of string */ public static function get_default_primary_tables_to_copy() { return [ 'commentmeta', 'comments', 'links', 'options', 'postmeta', 'posts', 'terms', 'term_relationships', 'term_taxonomy', 'termmeta', ]; } /** * Get filtered tables to duplicate when duplicated site is primary site * * @since 0.2.0 * @return array of string (filtered) */ public static function get_primary_tables_to_copy() { return apply_filters('mucd_default_primary_tables_to_copy', self::get_default_primary_tables_to_copy()); } } }