# post-carousel/4.0.2/admin/views/sp-framework/fields/text/text.php

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

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.2/code/admin/views/sp-framework/fields/text/text.php
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.2/raw/admin/views/sp-framework/fields/text/text.php
- Modified: 2025-08-25T10:53:50+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/4.0.2/code/admin/views/sp-framework/fields/text/text.php#L10-L20`.

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

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'SP_PC_Field_text' ) ) {
	/**
	 * SP_PC_Field_text
	 */
	class SP_PC_Field_text 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() {

			$type     = ( ! empty( $this->field['attributes']['type'] ) ) ? $this->field['attributes']['type'] : 'text';
			$url_type = ( ! empty( $this->field['url'] ) ) ? $this->field['url'] : '';

			echo wp_kses_post( $this->field_before() );
			if ( $url_type ) {
				echo '<div class="pro_preview-image"><img src="' . esc_url( $url_type ) . '" alt="pro-img" title="pro image"/></div>';
			} else {
				echo '<input type="' . esc_attr( $type ) . '" name="' . esc_attr( $this->field_name() ) . '" value="' . esc_attr( $this->value ) . '"' . wp_kses_post( $this->field_attributes() ) . ' />';
			}
			echo wp_kses_post( $this->field_after() );
		}
	}
}

```
