# post-carousel/2.4.2/admin/views/sp-framework/fields/notice/notice.php

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

- Page: https://pluginprobe.com/plugins/post-carousel/2.4.2/code/admin/views/sp-framework/fields/notice/notice.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.4.2/raw/admin/views/sp-framework/fields/notice/notice.php
- Modified: 2021-12-13T11:10:58+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.2/code/admin/views/sp-framework/fields/notice/notice.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) {
	die;
} // Cannot access directly.
/**
 *
 * Field: notice
 *
 * @since 2.0
 * @version 2.0
 */
if ( ! class_exists( 'SP_PC_Field_notice' ) ) {
	class SP_PC_Field_notice extends SP_PC_Fields {

		/**
		 * Constructor method.
		 *
		 * @param [type] $field
		 * @param string $value
		 * @param string $unique
		 * @param string $where
		 * @param string $parent
		 */
		public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {

			parent::__construct( $field, $value, $unique, $where, $parent );
		}

		/**
		 * Render method.
		 *
		 * @return void
		 */
		public function render() {
			echo wp_kses_post( $this->field_before() );
			$style = ( ! empty( $this->field['style'] ) ) ? $this->field['style'] : 'normal';

			echo ( ! empty( $this->field['content'] ) ) ? '<div class="spf-notice spf-notice-' . $style . '">' . wp_kses_post( $this->field['content'] ) . '</div>' : '';
			echo wp_kses_post( $this->field_after() );
		}

	}
}

```
