# convertkit/3.4.4/views/backend/setup-wizard/convertkit-setup/content-form-importer.php

Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages, version 3.4.4. 72 lines.

- Page: https://pluginprobe.com/plugins/convertkit/3.4.4/code/views/backend/setup-wizard/convertkit-setup/content-form-importer.php
- Raw: https://pluginprobe.com/plugins/convertkit/3.4.4/raw/views/backend/setup-wizard/convertkit-setup/content-form-importer.php
- Modified: 2026-02-09T03:07:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/convertkit/3.4.4/code/views/backend/setup-wizard/convertkit-setup/content-form-importer.php#L10-L20`.

```php
<?php
/**
 * Outputs the content for the Plugin Setup Wizard > Form Importer step.
 *
 * @package ConvertKit
 * @author ConvertKit
 */

foreach ( $this->form_importers as $form_importer ) {
	?>
	<div>
		<h1><?php echo esc_html( $form_importer['title'] ); ?></h1>
		<p>
			<?php
			printf(
				/* translators: %s: Form importer title */
				esc_html__( 'We detected the following %s forms in your content. We recommend replacing these with Kit forms, but you may leave them as is.', 'convertkit' ),
				esc_html( $form_importer['title'] )
			);
			?>
		</p>

		<table class="widefat striped">
			<thead>
				<tr>
					<th>
						<?php
						/* translators: %s: Form importer title */
						printf(
							/* translators: %s: Form importer title */
							esc_html__( '%s Form', 'convertkit' ),
							esc_html( $form_importer['title'] )
						);
						?>
					</th>
					<th>
						<?php esc_html_e( 'Kit Form', 'convertkit' ); ?>
					</th>
				</tr>
			</thead>
			<tbody>
				<?php
				foreach ( $form_importer['forms'] as $form_importer_form_id => $form_importer_form_title ) {
					?>
					<tr>
						<td><?php echo esc_html( $form_importer_form_title ); ?></td>
						<td>
						<?php
							$this->forms->output_select_field_all(
								'form_importer[' . $form_importer['name'] . '][' . $form_importer_form_id . ']',
								'form-importer-' . $form_importer['name'] . '-' . $form_importer_form_id,
								array(
									'convertkit-select2',
									'widefat',
								),
								'',
								array(
									'0' => esc_html__( 'Don\'t replace.', 'convertkit' ),
								)
							);
						?>
						</td>
					</tr>
					<?php
				}
				?>
			</tbody>
		</table>
	</div>
	<?php
}

```
