PluginProbe
Customify / 2.10.9
Customify v2.10.9
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
customify / includes / customizer-controls / class-Pix_Customize_HTML_Control.php

class-Pix_Customize_HTML_Control.php in Customify 2.10.9, at includes/customizer-controls/class-Pix_Customize_HTML_Control.php

21 lines 637 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped,WordPress.Security.EscapeOutput.ExceptionNotEscaped,WordPress.Security.EscapeOutput.UnsafePrintingFunction -- Legacy Customify view output contains trusted config HTML, dynamic CSS/JS, or WordPress Customizer binding attributes.
3
4 /**
5 * Class Pix_Customize_HTML_Control
6 */
7 class Pix_Customize_HTML_Control extends Pix_Customize_Control {
8 public $type = 'html';
9 public $action = null;
10 public $html = null;
11
12 /**
13 * Render the control's content.
14 */
15 public function render_content() {
16 if ( ! empty( $this->html ) ) {
17 echo ( $this->html );
18 }
19 }
20 }
21