# customify/1.2.7.1/features/customizer/controls/class-Pix_Customize_HTML_Control.php

Customify, version 1.2.7.1. 22 lines.

- Page: https://pluginprobe.com/plugins/customify/1.2.7.1/code/features/customizer/controls/class-Pix_Customize_HTML_Control.php
- Raw: https://pluginprobe.com/plugins/customify/1.2.7.1/raw/features/customizer/controls/class-Pix_Customize_HTML_Control.php
- Modified: 2015-07-07T17:38:48+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/customify/1.2.7.1/code/features/customizer/controls/class-Pix_Customize_HTML_Control.php#L10-L20`.

```php
<?php

/**
 * Class Pix_Customize_HTML_Control
 * A simple HTML Control
 */
class Pix_Customize_HTML_Control extends Pix_Customize_Control {
	public $type    = 'html';
	public $action  = null;
	public $html    = null;

	/**
	 * Render the control's content.
	 *
	 * @since 3.4.0
	 */
	public function render_content() {
		if ( ! empty( $this->html ) ) {
			echo ( $this->html );
		}
	}
}
```
