'', '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' => '', ); } // end get_default_saved_option; /** * 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', MUCD_Option::get_default_saved_option()); } // end get_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 array ( 'commentmeta' => array(), 'comments' => array(), 'links' => array('link_url', 'link_image'), 'options' => array('option_name', 'option_value'), 'postmeta' => array('meta_value'), 'posts' => array('post_content', 'guid', 'post_title', 'post_name'), 'terms' => array(), 'term_relationships' => array(), 'term_taxonomy' => array(), ); } // end get_default_fields_to_update; /** * 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', MUCD_Option::get_default_fields_to_update()); } // end get_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 array ( 'commentmeta', 'comments', 'links', 'options', 'postmeta', 'posts', 'terms', 'term_relationships', 'term_taxonomy', 'termmeta', ); } // end get_default_primary_tables_to_copy; /** * 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', MUCD_Option::get_default_primary_tables_to_copy()); } // end get_primary_tables_to_copy; } // end class MUCD_Option; } // end if;