# post-carousel/2.4.26/admin/views/sp-framework/fields/preview/preview.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 2.4.26. 41 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/2.4.26/code/admin/views/sp-framework/fields/preview/preview.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.4.26/raw/admin/views/sp-framework/fields/preview/preview.php
- Modified: 2024-04-04T04:40:26+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/post-carousel/2.4.26/code/admin/views/sp-framework/fields/preview/preview.php#L10-L20`.

```php
<?php 
/**
 * The framework preview fields file.
 *
 * @package Smart_Post_Show
 * @subpackage Smart_Post_Show/admin
 */

if ( ! defined( 'ABSPATH' ) ) {
	die; 
} // Cannot access directly.

if ( ! class_exists( 'SP_PC_Field_preview' ) ) {	
	/**
	 * SP_PC_Field_preview
	 */
	class SP_PC_Field_preview extends SP_PC_Fields {
		/**
		 * Field constructor.
		 *
		 * @param array  $field The field type.
		 * @param string $value The values of the field.
		 * @param string $unique The unique ID for the field.
		 * @param string $where To where show the output CSS.
		 * @param string $parent The parent args.
		 */
		public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
			parent::__construct( $field, $value, $unique, $where, $parent );
		}
		/**
		 * Render method.
		 *
		 * @return void
		 */
		public function render() {
			echo '<div class="spsp-preview-box"><div id="spsp-preview-box"></div></div>';
		}

	}
}

```
