# advanced-forms/trunk/admin/forms/forms-export.php

Advanced Forms for ACF, version trunk. 194 lines.

- Page: https://pluginprobe.com/plugins/advanced-forms/trunk/code/admin/forms/forms-export.php
- Raw: https://pluginprobe.com/plugins/advanced-forms/trunk/raw/admin/forms/forms-export.php
- Modified: 2024-02-04T00:30:28+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/advanced-forms/trunk/code/admin/forms/forms-export.php#L10-L20`.

```php
<?php

class AF_Admin_Forms_Export {

	private $capability = 'edit_pages';

	function __construct() {
		add_action( 'admin_menu', array( $this, 'register_admin_page' ), 10, 0 );
		add_action( 'admin_init', array( $this, 'export_json_file' ), 10, 0 );
		add_action( 'af/admin/form/actions', array( $this, 'add_export_button' ), 15, 1 );
		add_filter( 'admin_title', array( $this, 'fix_admin_title' ), 10, 2 );
	}

	/**
	 * Register hidden admin page for form export.
	 *
	 * @since 1.5.0
	 */
	function register_admin_page() {
		// By using add_submenu_page without a parent the page won't be shown in the admin menu.
		add_submenu_page(
			'admin.php',
			'Export form',
			'Export',
			$this->capability,
			'af_export_form',
			[ $this, 'export_page' ]
		);
	}

	/**
	 * Display form export page
	 *
	 * @since 1.5.0
	 */
	function export_page() {
		if ( ! isset( $_GET['form_id'] ) ) {
			return;
		}

		$form_id = $_GET['form_id'];
		$form = af_form_from_post( $form_id );

		$admin_page_url = menu_page_url( 'af_export_form', false );
		$form_json_link = add_query_arg( 'form_id', $form_id, $admin_page_url );
		$form_json_link = add_query_arg( 'export_json', true, $form_json_link );

		// Add nonce to link
		$form_json_link = $this->add_nonce_to_url( $form_json_link );

		$form_link = get_edit_post_link( $form['post_id'] );
		$code = $this->generate_form_code( $form );
		?>
		<div class="af-form-export wrap">
			<h1 class="wp-heading-inline"><?php _e( 'Exporting', 'advanced-forms' ); ?> "<?php echo $form['title']; ?>
				"</h1>
			<a href="<?php echo $form_link; ?>"
			   class="page-title-action"><?php _e( 'Back to form', 'advanced-forms' ) ?></a>
			<hr class="wp-header-end"/>

			<div id="poststuff">
				<div class="postbox">
					<div class="inside">
						<h2><?php _e( 'Export JSON', 'advanced-forms' ); ?></h2>
						<p>
							<?php _e( 'Export your form as a JSON file. The form can then be imported on any site at Forms &rarr; Import.', 'advanced-forms' ); ?>
						</p>
						<a class="button button-primary" href="<?php echo $form_json_link; ?>">
							<?php _e( 'Export file', 'advanced-forms' ); ?>
						</a>
					</div>

					<div class="inside">
						<h2><?php _e( 'Register programmatically', 'advanced-forms' ); ?></h2>
						<p>
							<?php _e( 'Place the following code in your theme or plugin to register your form programmatically.', 'advanced-forms' ); ?>
							<button class="copy-button button button-small" data-copied-text="Copied!">Copy to
								clipboard
							</button>
						</p>
						<pre class="export-code"><?php echo $code; ?></pre>
					</div>
				</div>
			</div>
		</div>
		<?php
	}

	function add_export_button( $form_id ) {
		$export_url = add_query_arg( 'form_id', $form_id, menu_page_url( 'af_export_form', false ) );
		echo sprintf( '<a href="%s" class="button button-large">%s</a>', $export_url, __( 'Export', 'advanced-forms' ) );
	}

	/**
	 * Wordpress won't display a page title, probably because of the submenu hack in register_admin_page.
	 * This function is hooked to the admin_title filter and fixes the issue.
	 *
	 * @since 1.5.0
	 */
	function fix_admin_title( $admin_title, $title ) {
		if ( get_current_screen()->id != 'admin_page_af_export_form' ) {
			return $admin_title;
		}

		return __( 'Export form', 'advanced-forms' ) . $admin_title;
	}

	function generate_form_code( $form ) {
		// Remove post ID key
		unset( $form['post_id'] );

		$str_replace = array(
			"  " => "\t",
			"'!!__(!!\'" => "__('",
			"!!\', !!\'" => "', '",
			"!!\')!!'" => "')",
			"array (" => "array("
		);
		$preg_replace = array(
			'/([\t\r\n]+?)array/' => 'array',
			'/[0-9]+ => array/' => 'array'
		);

		// Create a var_export string of the form array
		$code = var_export( $form, true );

		// change double spaces to tabs
		$code = str_replace( array_keys( $str_replace ), array_values( $str_replace ), $code );

		// correctly formats "=> array("
		$code = preg_replace( array_keys( $preg_replace ), array_values( $preg_replace ), $code );

		$code = esc_textarea( $code );

		$output = "function register_forms() {\n";
		$output .= sprintf( "\taf_register_form( %s );\n", str_replace( "\n", "\n\t", $code ) );
		$output .= "}\n";
		$output .= "add_action( 'af/register_forms', 'register_forms' );";

		return $output;
	}

	/**
	 * Generate a JSON file for a form and output it to trigger a download.
	 *
	 * @since 1.6.5
	 */
	function export_json_file() {
		if ( ! isset( $_GET['form_id'] ) || ! isset( $_GET['export_json'] ) ) {
			return;
		}

		if ( ! current_user_can( $this->capability ) ) {
			wp_die(
				__( 'You do not have sufficient permissions to export forms.', 'advanced-forms' ),
				__( 'Error: Insufficient permissions', 'advanced-forms' ),
				[ 'back_link' => true ]
			);
		}

		if ( ! $this->verify_nonce() ) {
			wp_die(
				__( 'Form could not exported due to missing or invalid nonce.', 'advanced-forms' ),
				__( 'Error: Invalid nonce', 'advanced-forms' ),
				[ 'back_link' => true ]
			);
		}

		$form = af_form_from_post( $_GET['form_id'] );

		// PHP versions below 5.4 don't support JSON_PRETTY_PRINT.
		$json_pretty_print = 128;
		$json = wp_json_encode( af_export_form( $form ), $json_pretty_print );

		$file_name = sprintf( '%s.json', $form['key'] );
		header( 'Content-disposition: attachment; filename=' . $file_name );
		header( 'Content-type: application/json' );

		echo $json;
		exit;
	}

	private function add_nonce_to_url( $url ) {
		return wp_nonce_url( $url, 'af_export_form', 'af_export_nonce' );
	}

	private function verify_nonce() {
		$nonce = isset( $_GET['af_export_nonce'] ) ? $_GET['af_export_nonce'] : '';
		return wp_verify_nonce( $nonce, 'af_export_form' );
	}

}

return new AF_Admin_Forms_Export();
```
