get_error_message(); else if($result) $message = $result; */ unset( $files ); libxml_use_internal_errors( $set_err ); libxml_disable_entity_loader( $loader ); } public static function route() { $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); if ( 'import_xml' === $action ) { return self::import_xml(); } elseif ( 'export_xml' === $action ) { return self::export_xml(); } elseif ( apply_filters( 'frm_xml_route', true, $action ) ) { return self::form(); } } public static function form( $errors = array(), $message = '' ) { $where = array( 'status' => array( null, '', 'published' ), ); $forms = FrmForm::getAll( $where, 'name' ); $export_types = apply_filters( 'frm_xml_export_types', array( 'forms' => __( 'Forms', 'formidable' ), 'items' => __( 'Entries', 'formidable' ), ) ); $export_format = apply_filters( 'frm_export_formats', array( 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple', ), 'csv' => array( 'name' => 'CSV', 'support' => 'items', 'count' => 'single', ), ) ); include( FrmAppHelper::plugin_path() . '/classes/views/xml/import_form.php' ); } public static function import_xml() { $errors = array(); $message = ''; $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'import-xml', 'import-xml-nonce' ); if ( false !== $permission_error ) { $errors[] = $permission_error; self::form( $errors ); return; } if ( ! isset( $_FILES ) || ! isset( $_FILES['frm_import_file'] ) || empty( $_FILES['frm_import_file']['name'] ) || (int) $_FILES['frm_import_file']['size'] < 1 ) { $errors[] = __( 'Oops, you didn\'t select a file.', 'formidable' ); self::form( $errors ); return; } $file = $_FILES['frm_import_file']['tmp_name']; if ( ! is_uploaded_file( $file ) ) { unset( $file ); $errors[] = __( 'The file does not exist, please try again.', 'formidable' ); self::form( $errors ); return; } //add_filter('upload_mimes', 'FrmXMLController::allow_mime'); $export_format = apply_filters( 'frm_export_formats', array( 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple', ), ) ); $file_type = strtolower( pathinfo( $_FILES['frm_import_file']['name'], PATHINFO_EXTENSION ) ); if ( 'xml' !== $file_type && isset( $export_format[ $file_type ] ) ) { // allow other file types to be imported do_action( 'frm_before_import_' . $file_type ); return; } unset( $file_type ); if ( ! function_exists( 'libxml_disable_entity_loader' ) ) { $errors[] = __( 'XML import is not enabled on your server.', 'formidable' ); self::form( $errors ); return; } $set_err = libxml_use_internal_errors( true ); $loader = libxml_disable_entity_loader( true ); $result = FrmXMLHelper::import_xml( $file ); FrmXMLHelper::parse_message( $result, $message, $errors ); unset( $file ); libxml_use_internal_errors( $set_err ); libxml_disable_entity_loader( $loader ); self::form( $errors, $message ); } public static function export_xml() { $error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'export-xml', 'export-xml-nonce' ); if ( ! empty( $error ) ) { wp_die( esc_html( $error ) ); } $ids = FrmAppHelper::get_post_param( 'frm_export_forms', array() ); $type = FrmAppHelper::get_post_param( 'type', array() ); $format = FrmAppHelper::get_post_param( 'format', 'xml', 'sanitize_title' ); if ( ! headers_sent() && ! $type ) { wp_redirect( esc_url_raw( admin_url( 'admin.php?page=formidable-import' ) ) ); die(); } if ( 'xml' === $format ) { self::generate_xml( $type, compact( 'ids' ) ); } elseif ( 'csv' === $format ) { self::generate_csv( compact( 'ids' ) ); } else { do_action( 'frm_export_format_' . $format, compact( 'ids' ) ); } wp_die(); } public static function generate_xml( $type, $args = array() ) { global $wpdb; self::prepare_types_array( $type ); $tables = array( 'items' => $wpdb->prefix . 'frm_items', 'forms' => $wpdb->prefix . 'frm_forms', 'posts' => $wpdb->posts, 'styles' => $wpdb->posts, 'actions' => $wpdb->posts, ); $defaults = array( 'ids' => false, ); $args = wp_parse_args( $args, $defaults ); $sitename = sanitize_key( get_bloginfo( 'name' ) ); if ( ! empty( $sitename ) ) { $sitename .= '.'; } $filename = $sitename . 'formidable.' . date( 'Y-m-d' ) . '.xml'; header( 'Content-Description: File Transfer' ); header( 'Content-Disposition: attachment; filename=' . $filename ); header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); //make sure ids are numeric if ( is_array( $args['ids'] ) && ! empty( $args['ids'] ) ) { $args['ids'] = array_filter( $args['ids'], 'is_numeric' ); } $records = array(); foreach ( $type as $tb_type ) { $where = array(); $join = ''; $table = $tables[ $tb_type ]; $select = $table . '.id'; $query_vars = array(); switch ( $tb_type ) { case 'forms': //add forms if ( $args['ids'] ) { $where[] = array( 'or' => 1, $table . '.id' => $args['ids'], $table . '.parent_form_id' => $args['ids'], ); } else { $where[ $table . '.status !' ] = 'draft'; } break; case 'actions': $select = $table . '.ID'; $where['post_type'] = FrmFormActionsController::$action_post_type; if ( ! empty( $args['ids'] ) ) { $where['menu_order'] = $args['ids']; } break; case 'items': //$join = "INNER JOIN {$wpdb->prefix}frm_item_metas im ON ($table.id = im.item_id)"; if ( $args['ids'] ) { $where[ $table . '.form_id' ] = $args['ids']; } break; case 'styles': // Loop through all exported forms and get their selected style IDs $frm_style = new FrmStyle(); $default_style = $frm_style->get_default_style(); $form_ids = $args['ids']; $style_ids = array(); foreach ( $form_ids as $form_id ) { $form_data = FrmForm::getOne( $form_id ); // For forms that have not been updated while running 2.0, check if custom_style is set if ( isset( $form_data->options['custom_style'] ) ) { if ( 1 === absint( $form_data->options['custom_style'] ) ) { $style_ids[] = $default_style->ID; } else { $style_ids[] = $form_data->options['custom_style']; } } unset( $form_id, $form_data ); } $select = $table . '.ID'; $where['post_type'] = 'frm_styles'; // Only export selected styles if ( ! empty( $style_ids ) ) { $where['ID'] = $style_ids; } break; default: $select = $table . '.ID'; $join = ' INNER JOIN ' . $wpdb->postmeta . ' pm ON (pm.post_id=' . $table . '.ID)'; $where['pm.meta_key'] = 'frm_form_id'; if ( empty( $args['ids'] ) ) { $where['pm.meta_value >'] = 1; } else { $where['pm.meta_value'] = $args['ids']; } } $records[ $tb_type ] = FrmDb::get_col( $table . $join, $where, $select ); unset( $tb_type ); } echo '\n"; include( FrmAppHelper::plugin_path() . '/classes/views/xml/xml.php' ); } private static function prepare_types_array( &$type ) { $type = (array) $type; if ( ! in_array( 'forms', $type ) && ( in_array( 'items', $type ) || in_array( 'posts', $type ) ) ) { // make sure the form is included if there are entries $type[] = 'forms'; } if ( in_array( 'forms', $type ) ) { // include actions with forms $type[] = 'actions'; } } public static function generate_csv( $atts ) { $form_ids = $atts['ids']; if ( empty( $form_ids ) ) { wp_die( esc_html__( 'Please select a form', 'formidable' ) ); } self::csv( reset( $form_ids ) ); } /** * Export to CSV * @since 2.0.19 */ public static function csv( $form_id = false, $search = '', $fid = '' ) { FrmAppHelper::permission_check( 'frm_view_entries' ); if ( ! $form_id ) { $form_id = FrmAppHelper::get_param( 'form', '', 'get', 'sanitize_text_field' ); $search = FrmAppHelper::get_param( ( isset( $_REQUEST['s'] ) ? 's' : 'search' ), '', 'get', 'sanitize_text_field' ); $fid = FrmAppHelper::get_param( 'fid', '', 'get', 'sanitize_text_field' ); } set_time_limit( 0 ); //Remove time limit to execute this function $mem_limit = str_replace( 'M', '', ini_get( 'memory_limit' ) ); if ( (int) $mem_limit < 256 ) { ini_set( 'memory_limit', '256M' ); } global $wpdb; $form = FrmForm::getOne( $form_id ); $form_id = $form->id; $form_cols = self::get_fields_for_csv_export( $form_id, $form ); $item_id = FrmAppHelper::get_param( 'item_id', 0, 'get', 'sanitize_text_field' ); if ( ! empty( $item_id ) ) { $item_id = explode( ',', $item_id ); } $query = array( 'form_id' => $form_id, ); if ( $item_id ) { $query['id'] = $item_id; } /** * Allows the query to be changed for fetching the entry ids to include in the export * * $query is the array of options to be filtered. It includes form_id, and maybe id (array of entry ids), * and the search query. This should return an array, but it can be handled as a string as well. */ $query = apply_filters( 'frm_csv_where', $query, compact( 'form_id', 'search', 'fid', 'item_id' ) ); $entry_ids = FrmDb::get_col( $wpdb->prefix . 'frm_items it', $query ); unset( $query ); if ( empty( $entry_ids ) ) { esc_html_e( 'There are no entries for that form.', 'formidable' ); } else { FrmCSVExportHelper::generate_csv( compact( 'form', 'entry_ids', 'form_cols' ) ); } wp_die(); } /** * Get the fields that should be included in the CSV export * * @since 2.0.19 * * @param int $form_id * @param object $form * @return array $csv_fields */ private static function get_fields_for_csv_export( $form_id, $form ) { // Phase frm_csv_field_ids out by 2.01.05 $csv_field_ids = apply_filters( 'frm_csv_field_ids', '', $form_id, array( 'form' => $form, ) ); if ( $csv_field_ids ) { _deprecated_function( 'The frm_csv_field_ids filter', '2.0.19', 'the frm_csv_columns filter' ); $where = array( 'fi.type not' => FrmField::no_save_fields(), array( 'or' => 1, 'fi.form_id' => $form->id, 'fr.parent_form_id' => $form->id, ), ); if ( ! is_array( $csv_field_ids ) ) { $csv_field_ids = explode( ',', $csv_field_ids ); } if ( ! empty( $csv_field_ids ) ) { $where['fi.id'] = $csv_field_ids; } $csv_fields = FrmField::getAll( $where, 'field_order' ); } else { $csv_fields = FrmField::get_all_for_form( $form_id, '', 'include', 'include' ); $no_export_fields = FrmField::no_save_fields(); foreach ( $csv_fields as $k => $f ) { if ( in_array( $f->type, $no_export_fields, true ) ) { unset( $csv_fields[ $k ] ); } } } return $csv_fields; } public static function allow_mime( $mimes ) { if ( ! isset( $mimes['csv'] ) ) { // allow csv files $mimes['csv'] = 'text/csv'; } if ( ! isset( $mimes['xml'] ) ) { // allow xml $mimes['xml'] = 'text/xml'; } return $mimes; } }