403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.217.46
Web Server : nginx/1.28.1
System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64
User : root ( 0)
PHP Version : 8.2.28
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/wp.3/wp-content/plugins/Ultimate_VC_Addons/params/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.3/wp-content/plugins/Ultimate_VC_Addons/params/Ultimate_Icon_Manager_Param.php
<?php
/**
 * Class Ultimate_VC_Addons_Icon_Manager_Param
 *
 * @package Ultimate_VC_Addons_Icon_Manager_Param.
 */

if ( ! class_exists( 'Ultimate_VC_Addons_Icon_Manager_Param' ) ) {
	/**
	 * Class Ultimate_VC_Addons_Icon_Manager_Param
	 *
	 * @class Ultimate_VC_Addons_Icon_Manager_Param.
	 */
	class Ultimate_VC_Addons_Icon_Manager_Param {
		/**
		 * Initiator __construct.
		 */
		public function __construct() {
			$GLOBALS['pid'] = 0;
				$id         = null;
				$pcnt       = null;
			if ( defined( 'WPB_VC_VERSION' ) && version_compare( WPB_VC_VERSION, 4.8 ) >= 0 ) {
				if ( function_exists( 'vc_add_shortcode_param' ) ) {
					vc_add_shortcode_param( 'icon_manager', array( $this, 'icon_manager' ) );
				}
			} else {
				if ( function_exists( 'add_shortcode_param' ) ) {
					add_shortcode_param( 'icon_manager', array( $this, 'icon_manager' ) );
				}
			}
		}
		/**
		 * Icon_manager.
		 *
		 * @param array  $settings Settings.
		 * @param string $value Value.
		 */
		public function icon_manager( $settings, $value ) {
			$GLOBALS['pid'] = $GLOBALS['pid'] + 1;
			$pcnt           = $GLOBALS['pid'];

			$aio_icon_manager = new Ultimate_VC_Addons_Icon_Manager();
			$font_manager     = $aio_icon_manager->get_font_manager( $pcnt );
			$dependency       = '';

			$params       = wp_parse_url( esc_url_raw( isset( $_SERVER['HTTP_REFERER'] ) ? ( $_SERVER['HTTP_REFERER'] ) : '' ) );
			$vc_is_inline = false;
			if ( isset( $params['query'] ) ) {
				parse_str( $params['query'], $params );
				$vc_is_inline = isset( $params['vc_action'] ) ? true : false;
			}

			$output = '<div class="my_param_block">'
					. '<input name="' . esc_attr( $settings['param_name'] ) . '"
					  class="wpb_txt_icon_value wpb_vc_param_value wpb-textinput ' . esc_attr( $settings['param_name'] ) . ' 
					  ' . esc_attr( $settings['type'] ) . '_field" type="hidden" 
					  value="' . esc_attr( $value ) . '" ' . $dependency . ' id="ulticon-' . esc_attr( $pcnt ) . '"/>'
					. '</div>';
			if ( $vc_is_inline ) {
				$output .= '<script type="text/javascript">
					var val=jQuery("#ulticon-' . esc_attr( $pcnt ) . '").val();
					//alert("yes");
					var val=jQuery("#ulticon-' . esc_attr( $pcnt ) . '").val();
					var pmid="' . esc_attr( $pcnt ) . '";
					var pmid="' . esc_attr( $pcnt ) . '";
					var val=jQuery("#ulticon-' . esc_attr( $pcnt ) . '").val();
					if(val==""){
							val="none";
						}
						if(val=="icon_color="){
							val="none";
						}

						jQuery(".preview-icon-' . esc_attr( $pcnt ) . '").html("<i class="+val+"></i>");

						jQuery(".icon-list-' . esc_attr( $pcnt ) . ' li[data-icons=\'"+ val+"\']").addClass("selected");

						jQuery(".icons-list li").click(function() {

					var id=jQuery(this).attr("data-id");
					//alert(id);
                    jQuery(this).attr("class","selected").siblings().removeAttr("class");
                    var icon = jQuery(this).attr("data-icons");

                    jQuery("#ulticon-"+id).val(icon);
                    jQuery(".preview-icon-"+id).html("<i class=\'"+icon+"\'></i>");
                });

					</script>';
			} else {

				$output .= '<script type="text/javascript">


				jQuery(document).ready(function(){
					var pmid="' . esc_attr( $pcnt ) . '";
					var val=jQuery("#ulticon-' . esc_attr( $pcnt ) . '").val();
					if(val==""){
						val="none";
					}
					if(val=="icon_color="){
						val="none";
					}

					jQuery(".preview-icon-' . esc_attr( $pcnt ) . '").html("<i class="+val+"></i>");

					jQuery(".icon-list-' . esc_attr( $pcnt ) . ' li[data-icons=\'"+ val+"\']").addClass("selected");
				});
				jQuery(".icons-list li").click(function() {
					var id=jQuery(this).attr("data-id");
					//alert(id);
                    jQuery(this).attr("class","selected").siblings().removeAttr("class");
                    var icon = jQuery(this).attr("data-icons");

                    jQuery("#ulticon-"+id).val(icon);
                    jQuery(".preview-icon-"+id).html("<i class=\'"+icon+"\'></i>");
                });
				</script>';
			}
			$output .= '<div class="wpb_txt_icons_block" data-old-icon-value="' . esc_attr( $pcnt ) . '">' . $font_manager . '</div>';
			return $output;
		}

	}
}

if ( class_exists( 'Ultimate_VC_Addons_Icon_Manager_Param' ) ) {
	$ultimate_icon_manager_param = new Ultimate_VC_Addons_Icon_Manager_Param();
}

Youez - 2016 - github.com/yon3zu
LinuXploit