403Webshell
Server IP : 172.67.159.97  /  Your IP : 216.73.217.154
Web Server : nginx/1.24.0
System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/rebeccaone.com/wp-content/plugins/convertplug/framework/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/rebeccaone.com/wp-content/plugins/convertplug/framework//class-add-convertplug-widget.php
<?php
/**
 * Prohibit direct script loading.
 *
 * @package Convert_Plus.
 */

defined( 'ABSPATH' ) || exit;

if ( ! class_exists( 'Convert_Plug_Widget' ) ) {
	/**
	 * Class Convert_Plug_Widget.
	 */
	class Convert_Plug_Widget extends WP_Widget {

		/**
		 * Widget constructor.
		 */
		public function __construct() {
			parent::__construct(
				'convertplug_widget',
				/* translators:%s Plugin name*/
				sprintf( __( '%s Widget', 'smile' ), CP_PLUS_NAME ),
				array(
					'classname'   => 'convertplug_widget',
					'description' => __( 'A widget to display modules inline as a part of sidebar area.', 'smile' ),
				)
			);
		}

		/**
		 * Function Name: widget.
		 *
		 * @param  array $args     settings array.
		 * @param  array $instance array val.
		 */
		public function widget( $args, $instance ) {

			wp_enqueue_script( 'convert-plus-widget-front-jscript', plugin_dir_url( __FILE__ ) . 'assets/js/cp-widgets-front.js', array( 'jquery' ), CP_VERSION, false );

			extract( $args ); //phpcs:ignore WordPress.PHP.DontExtract.extract_extract

			$title    = apply_filters( 'widget_title', $instance['title'] );
			$style_id = '';
			$select   = $instance['select'];

			if ( 'info_bar' === $select ) {
				$style_id = '[cp_info_bar display="inline" id="' . $instance['style_id_infobar'] . '"][/cp_info_bar]';
			} elseif ( 'slide_in' === $select ) {
				$style_id = '[cp_slide_in display="inline" id="' . $instance['style_id_slidein'] . '"][/cp_slide_in]';
			} else {
				$style_id = '[cp_modal display="inline" id="' . $instance['style_id_modal'] . '"][/cp_modal]';
			}

			echo $before_widget; //PHPCS:ignore:WordPress.Security.EscapeOutput.OutputNotEscaped

			if ( $title ) {
				echo $before_title . $title . $after_title; //PHPCS:ignore:WordPress.Security.EscapeOutput.OutputNotEscaped
			}

			echo do_shortcode( $style_id );
			echo $after_widget; //PHPCS:ignore:WordPress.Security.EscapeOutput.OutputNotEscaped
		}

		/**
		 * Function Name: form.
		 *
		 * @param  array $instance array parameter.
		 */
		public function form( $instance ) {

			wp_enqueue_script( 'convert-plus-widget-jscript', plugin_dir_url( __FILE__ ) . 'assets/js/cp-widgets.js', array( 'jquery' ), CP_VERSION, false );

			$title            = '';
			$select           = '';
			$style_id_modal   = '';
			$style_id_infobar = '';
			$style_id_slidein = '';

			if ( $instance ) {
				$title  = ( '' !== $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
				$select = ( '' !== $instance['select'] ) ? esc_attr( $instance['select'] ) : '';

				$style_id_modal   = isset( $instance['style_id_modal'] ) && '' !== $instance['style_id_modal'] ? esc_attr( $instance['style_id_modal'] ) : '';
				$style_id_infobar = isset( $instance['style_id_infobar'] ) && '' !== $instance['style_id_infobar'] ? esc_attr( $instance['style_id_infobar'] ) : '';
				$style_id_slidein = isset( $instance['style_id_slidein'] ) && '' !== $instance['style_id_slidein'] ? esc_attr( $instance['style_id_slidein'] ) : '';
			}

			$cp_modules = get_option( 'convert_plug_modules' );

			$select = ( '' !== $select ) ? $select : strtolower( str_replace( '_Popup', '', $cp_modules[0] ) );

			$cp_modal_name   = 'smile_modal_styles';
			$cp_infobar_name = 'smile_info_bar_styles';
			$cp_slidein_name = 'smile_slide_in_styles';

			$cp_modal_id   = is_array( get_option( $cp_modal_name ) ) ? array_reverse( get_option( $cp_modal_name ) ) : array();
			$cp_infobar_id = is_array( get_option( $cp_infobar_name ) ) ? array_reverse( get_option( $cp_infobar_name ) ) : array();
			$cp_slidein_id = is_array( get_option( $cp_slidein_name ) ) ? array_reverse( get_option( $cp_slidein_name ) ) : array();

			if ( 'info_bar' === $select ) {
				$modal_style   = 'display:none';
				$infobar_style = '';
				$slidein_style = 'display:none';
			} elseif ( 'slide_in' === $select ) {
				$modal_style   = 'display:none';
				$infobar_style = 'display:none';
				$slidein_style = '';
			} else {
				$modal_style   = '';
				$infobar_style = 'display:none';
				$slidein_style = 'display:none';
			}

			$cp_create_style = add_query_arg(
				array(
					'page' => 'smile-modal-designer',
				),
				admin_url( 'admin.php' )
			);
			?>			
			<p>
				<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title:', 'smile' ); ?></label> 
				<input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
			</p>

			<p>
				<label for="<?php echo esc_attr( $this->get_field_id( 'select' ) ); ?>"><?php esc_html_e( 'Active Modules:', 'smile' ); ?></label> 
				<select id="<?php echo esc_attr( $this->get_field_id( 'select' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'select' ) ); ?>" class="cp-active-modules widefat">
					<?php
					foreach ( $cp_modules as $value ) {
						$value = strtolower( str_replace( '_Popup', '', $value ) );
						echo '<option value="' . $value . '" id="' . $value . '"', $select == $value ? ' selected="selected"' : '', '>', esc_attr( ucwords( str_replace( '_', ' ', $value ) ) ), '</option>';
					}
					?>
				</select>
			</p>			
			<p class = "cp-modal-id" style="<?php echo esc_attr( $modal_style ); ?> ">
				<?php
				if ( 0 < count( $cp_modal_id ) ) {
					?>
					<label for="<?php echo esc_attr( $this->get_field_id( 'style_id_modal' ) ); ?>"><?php esc_html_e( 'Style Name:', 'smile' ); ?></label> 
					<select id="<?php echo esc_attr( $this->get_field_id( 'style_id_modal' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'style_id_modal' ) ); ?>" class="widefat">
						<?php
						foreach ( $cp_modal_id as $value ) {
							echo '<option value="' . $value['style_id'] . '" id="' . $value['style_id'] . '"', $style_id_modal == $value['style_id'] ? ' selected="selected"' : '', '>', esc_attr( urldecode( $value['style_name'] ) ), '</option>';
						}
						?>
					</select>
					<?php
				} else {
					?>
					Looks like you haven't created any style yet! Lets create first style <a href="<?php echo esc_attr( esc_url( $cp_create_style ) ); ?>" target="_blank" rel="noopener" >here</a>.
					<?php } ?>
				</p>

				<p class = "cp-infobar-id" style="<?php echo esc_attr( $infobar_style ); ?>" >
					<?php
					if ( 0 < count( $cp_infobar_id ) ) {
						?>
						<label for="<?php echo esc_attr( $this->get_field_id( 'style_id_infobar' ) ); ?>"><?php esc_html_e( 'Style Name:', 'smile' ); ?></label> 
						<select id="<?php echo esc_attr( $this->get_field_id( 'style_id_infobar' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'style_id_infobar' ) ); ?>" class="widefat">
							<?php
							foreach ( $cp_infobar_id as $value ) {
								echo '<option value="' . $value['style_id'] . '" id="' . $value['style_id'] . '"', $style_id_infobar == $value['style_id'] ? ' selected="selected"' : '', '>', esc_attr( urldecode( $value['style_name'] ) ), '</option>';
							}
							?>
						</select>
						<?php } else { ?>
						Looks like you haven't created any style yet! Lets create first style <a href="<?php echo esc_attr( esc_url( $cp_create_style ) ); ?>" target="_blank" rel="noopener">here</a>.
						<?php } ?>
					</p>

					<p class = "cp-slidein-id" style="<?php echo esc_attr( $slidein_style ); ?>" >
						<?php
						if ( 0 < count( $cp_slidein_id ) ) {
							?>
							<label for="<?php echo esc_attr( $this->get_field_id( 'style_id_slidein' ) ); ?>"><?php esc_html_e( 'Style Name:', 'smile' ); ?></label> 
							<select id="<?php echo esc_attr( $this->get_field_id( 'style_id_slidein' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'style_id_slidein' ) ); ?>" class="widefat">
								<?php
								foreach ( $cp_slidein_id as $value ) {
									echo '<option value="' . $value['style_id'] . '" id="' . $value['style_id'] . '"', $style_id_slidein == $value['style_id'] ? ' selected="selected"' : '', '>', esc_attr( urldecode( $value['style_name'] ) ), '</option>';
								}
								?>
							</select>
							<?php } else { ?>
							Looks like you haven't created any style yet! Lets create first style <a href="<?php echo esc_attr( esc_url( $cp_create_style ) ); ?>" target="_blank" rel="noopener" >here</a>.
							<?php } ?>
						</p>

						<?php
		}

		/**
		 * Function Name: update Updating widget replacing old instances with new.
		 *
		 * @param  array $new_instance array parameter.
		 * @param  array $old_instance array parameter.
		 * @return array               array parameter.
		 */
		public function update( $new_instance, $old_instance ) {
			// processes widget options on save.
			$instance = $old_instance;

			$instance['title']  = wp_strip_all_tags( $new_instance['title'] );
			$instance['select'] = wp_strip_all_tags( $new_instance['select'] );

			if ( 'info_bar' === $new_instance['select'] ) {
				$instance['style_id_infobar'] = wp_strip_all_tags( $new_instance['style_id_infobar'] );
			} elseif ( 'slide_in' === $new_instance['select'] ) {
				$instance['style_id_slidein'] = wp_strip_all_tags( $new_instance['style_id_slidein'] );

			} else {
				$instance['style_id_modal'] = wp_strip_all_tags( $new_instance['style_id_modal'] );
			}

			return $instance;
		}

	}
} //End Class Exist if.

if ( ! function_exists( 'load_convertplug_widget' ) ) {
	/**
	 * Function name:load_convertplug_widget Register and load the widget..
	 */
	function load_convertplug_widget() {
		register_widget( 'Convert_Plug_Widget' );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit