# code-snippets/3.1.0/php/class-export.php

Code Snippets, version 3.1.0. 157 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.1.0/code/php/class-export.php
- Raw: https://pluginprobe.com/plugins/code-snippets/3.1.0/raw/php/class-export.php
- Modified: 2022-05-17T06:51:02+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/code-snippets/3.1.0/code/php/class-export.php#L10-L20`.

```php
<?php

namespace Code_Snippets;

/**
 * Handles exporting snippets from the site in various downloadable formats
 *
 * @package Code_Snippets
 * @since   3.0.0
 */
class Export {

	/**
	 * Array of snippet data fetched from the database
	 *
	 * @var array
	 */
	private $snippets_list;

	/**
	 * Class constructor
	 *
	 * @param array|int $ids        List of snippet IDs to export.
	 * @param string    $table_name Name of the database table to fetch snippets from.
	 */
	public function __construct( $ids, $table_name = '' ) {
		$this->fetch_snippets( $ids, $table_name );
	}

	/**
	 * Fetch the selected snippets from the database
	 *
	 * @param array|int $ids        List of snippet IDs to export.
	 * @param string    $table_name Name of database table to fetch snippets from.
	 */
	private function fetch_snippets( $ids, $table_name ) {

		if ( '' === $table_name ) {
			$table_name = code_snippets()->db->get_table_name();
		}

		if ( ! is_array( $ids ) ) {
			$ids = array( $ids );
		}

		$this->snippets_list = count( $ids ) ? get_snippets( $ids, $table_name ) : array();
	}

	/**
	 * Set up the current page to act like a downloadable file instead of being shown in the browser
	 *
	 * @param string $format    File format. Used for file extension.
	 * @param string $mime_type File MIME type. Used for Content-Type header.
	 */
	private function do_headers( $format, $mime_type = 'text/plain' ) {

		/* Build the export filename */
		if ( 1 === count( $this->snippets_list ) ) {
			/* If there is only snippet to export, use its name instead of the site name */
			$first_snippet = new Snippet( $this->snippets_list[0] );
			$title = strtolower( $first_snippet->name );
		} else {
			/* Otherwise, use the site name as set in Settings > General */
			$title = strtolower( get_bloginfo( 'name' ) );
		}

		$filename = "$title.code-snippets.$format";
		$filename = apply_filters( 'code_snippets/export/filename', $filename, $title );

		/* Set HTTP headers */
		header( 'Content-Disposition: attachment; filename=' . sanitize_file_name( $filename ) );
		header( "Content-Type: $mime_type; charset=" . get_bloginfo( 'charset' ) );
	}

	/**
	 * Export snippets in JSON format
	 */
	public function export_snippets() {
		$snippets = array();

		foreach ( $this->snippets_list as $snippet ) {
			$fields = array( 'name', 'desc', 'tags', 'scope', 'code', 'priority' );
			$final_snippet = array();

			foreach ( $fields as $field ) {
				if ( ! empty( $snippet->$field ) ) {
					$final_snippet[ $field ] = str_replace( "\r\n", "\n", $snippet->$field );
				}
			}

			if ( $final_snippet ) {
				$snippets[] = $final_snippet;
			}
		}

		$this->do_headers( 'json', 'application/json' );

		$data = array(
			'generator'    => 'Code Snippets v' . code_snippets()->version,
			'date_created' => gmdate( 'Y-m-d H:i' ),
			'snippets'     => $snippets,
		);

		echo wp_json_encode( $data, apply_filters( 'code_snippets/export/json_encode_options', 0 ) );
		exit;
	}

	/**
	 * Export snippets to a downloadable file.
	 *
	 * The Pro version of this function can download snippets to .css and .js files.
	 */
	public function download_snippets() {
		$this->download_php_snippets();
	}

	/**
	 * Generate a downloadable PHP file from a list of snippets
	 * @phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
	 */
	public function download_php_snippets() {
		$this->do_headers( 'php', 'text/php' );
		$last_type = '';

		/* Loop through the snippets */
		foreach ( $this->snippets_list as $snippet ) {
			$snippet = new Snippet( $snippet );

			if ( 'php' !== $snippet->type && 'html' !== $snippet->type ) {
				continue;
			}

			if ( 'html' === $last_type ) {
				echo "\n?>\n";
			}

			if ( ! $last_type || 'html' === $last_type ) {
				echo "<?php\n";
			}

			echo "\n/**\n * $snippet->display_name\n";

			if ( ! empty( $snippet->desc ) ) {
				/* Convert description to PhpDoc */
				$desc = str_replace( "\n", "\n * ", $snippet->desc );
				echo " *\n * ", wp_strip_all_tags( $desc ), "\n";
			}

			printf( " */\n\n%s\n%s\n", 'html' === $snippet->type ? '?>' : '', trim( $snippet->code ) );

			$last_type = $snippet->type;
		}

		exit;
	}
}

```
