$field_args ) { if ( false === strpos( $key, 'imported_post_status' ) && false === strpos( $key, 'imported_encoding_status' ) ) { $value = Tribe__Settings_Manager::get_option( $key, null ); } else { /** * Regular Expression to match "suboption_name" given "option_name[suboption_name]" */ if ( preg_match( '/\[([^\]]+)\]/i', $key, $match ) ) { $type = end( $match ); } else { $type = 'csv'; } if ( strpos( $key, 'imported_encoding_status' ) === false ) { $value = Tribe__Events__Importer__Options::get_default_post_status( $type ); } else { $value = Tribe__Events__Importer__Options::get_default_encoding_status( $type ); } } new Tribe__Field( $key, $field_args, $value ); } wp_nonce_field( 'tribe-import-general-settings', 'tribe-import-general-settings' ); ?>