????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/cherry-plugin-x/includes/widgets/ |
Upload File : |
<?php class Cherry_Banner_Widget extends WP_Widget { /* constructor */ public function __construct() { parent::__construct( false, __( 'Cherry - Banner', CHERRY_PLUGIN_DOMAIN ), array( 'description'=>'Cherry Banner Widget' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'upload_scripts' ) ); add_action( 'admin_enqueue_styles', array( $this, 'upload_styles' ) ); } /** @see WP_Widget::widget */ public function widget( $args, $instance ) { extract( array_merge( $args, $instance ) ); $fill = false; if ( ! empty( $instance['fill'] ) && $instance['fill'] == 'on' ) { $fill = true; } $output = $before_widget; $output .= ( $link_url && $fill ) ? '<a class="banner_link" href="' . esc_url( $link_url ) . '" target="_blank">' : ''; $output .= '<div class="banner_wrapper '; $output .= $fill ? 'fill_class" style="background-image: url(' . esc_url( $image_url ) . ')' : ''; $output .= '">'; $output .= ( ! $fill && $image_url ) ? '<figure class="thumbnail"><a href="' . esc_url( $link_url ) . '" target="_blank"><img src="' . esc_url( $image_url ) . '" alt=""></a></figure>' : ''; $output .= $title ? $before_title . $title . $after_title : ''; $output .= '<p class="excerpt">' . $description_text . '</p>'; $output .= '</div>'; $output .= ( $link_url && $fill ) ? '</a>' : ''; $output .= $after_widget; echo $output; } /** @see WP_Widget::update */ public function update( $new_instance, $old_instance ) { return $new_instance; } /** @see WP_Widget::form */ public function form( $instance ) { $defaults = array( 'title' => '', 'description_text' => '', 'image_url' => '', 'fill' => 'on', 'link_url' => '', ); extract( array_merge( $defaults, $instance ) ); $form_field_type = array( 'title' => array( 'type' => 'text', 'class' => 'widefat', 'inline_style' => '', 'title' => __( 'Title', CHERRY_PLUGIN_DOMAIN ), 'description' => '', 'value' => $title, ), 'description_text' => array( 'type' => 'textarea', 'class' => 'widefat', 'inline_style' => '', 'title' => __( 'Banner description', CHERRY_PLUGIN_DOMAIN ), 'description' => '', 'value' => $description_text, ), 'image_url' => array( 'type' => 'upload', 'class' => 'widefat', 'inline_style' => '', 'title' => __('Image URL', CHERRY_PLUGIN_DOMAIN), 'description' => '', 'value' => $image_url, ), 'fill' => array( 'type' => 'checkbox', 'class' => '', 'inline_style' => '', 'title' => __( 'Fill image', CHERRY_PLUGIN_DOMAIN ), 'description' => '', 'value' => $fill, ), 'link_url' => array( 'type' => 'text', 'class' => 'widefat', 'inline_style' => '', 'title' => __( 'Link URL', CHERRY_PLUGIN_DOMAIN ), 'description' => '', 'value' => $link_url, ), ); $output = ''; foreach ( $form_field_type as $key => $args ) { $field_id = esc_attr( $this->get_field_id( $key ) ); $field_name = esc_attr( $this->get_field_name( $key ) ); $field_class = $args['class']; $field_title = $args['title']; $field_description = $args['description']; $field_value = $args['value']; $field_options = isset( $args['value_options'] ) ? $args['value_options'] : array(); $inline_style = $args['inline_style'] ? 'style="'.$args['inline_style'].'"' : ''; $output .= '<p>'; switch ( $args['type'] ) { case 'text': $output .= '<label for="'.$field_id.'">'.$field_title.': <input '.$inline_style.' class="'.$field_class.'" id="'.$field_id.'" name="'.$field_name.'" type="text" value="'.esc_attr($field_value).'" /></label>'; break; case 'checkbox': $checked = isset($instance[$key]) ? 'checked' : '' ; $output .= '<label for="'.$field_id.'"><input value="on" '.$inline_style.' class="'.$field_class.'" id="'.$field_id.'" name="'.$field_name.'" type="checkbox" '.$checked.' />'.$field_title.'</label>'; break; case 'select': $output .= '<label for="'.$field_id.'">'.$field_title.': <select id="'.$field_id.'" name="'.$field_name.'" '.$inline_style.' >'; if(!empty($field_options)){ foreach ($field_options as $key_options => $value_options) { $selected = $key_options == $field_value ? ' selected' : '' ; $output .= '<option value="'.$key_options.'" '.$selected.'>'.$value_options.'</option>'; } } $output .= '</select></label>'; break; case 'textarea': $output .= '<textarea class="'.$field_class.'" rows="16" cols="10" id="'.$field_id.'" name="'.$field_name.'">'.$field_value.'</textarea>'; break; case 'upload': $output .= '<label for="'.$field_id.'">'.$field_title.':</label>'; $output .= '<input name="'.$field_name.'" id="'.$field_id.'" '.$inline_style.' class="'.$field_class.'" type="text" size="36" value="'.$field_value.'" />'; $output .= '<input style="margin: 10px 0" class="upload_image_button button button-primary" type="button" value="'.__('Select Image', CHERRY_PLUGIN_DOMAIN).'" />'; break; } $output .= '<br><small>' . $field_description . '</small>'; $output .= '</p>'; } echo $output; } public function upload_scripts( $hook ) { if ( 'widgets.php' !== $hook ) { return; } wp_enqueue_media(); wp_print_media_templates(); wp_enqueue_script( 'upload_media_widget', CHERRY_PLUGIN_URL . 'admin/js/upload-media-files.js' ); } public function upload_styles() { wp_enqueue_style('thickbox'); } } ?>