Файловый менеджер - Редактировать - /home/digitalm/tendebergamo/wp-content/plugins/trydo-core/include/widgets/about-widget.php
Назад
<?php /** * @package trydo */ if( !class_exists('trydo_Info_Widget') ){ class trydo_Info_Widget extends WP_Widget{ /** * Register widget with WordPress. */ function __construct(){ $widget_options = array( 'description' => esc_html__('Trydo: info here', 'trydo'), 'customize_selective_refresh' => true, ); parent:: __construct('trydo_Info_Widget', esc_html__( 'Trydo: Info', 'trydo'), $widget_options ); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ){ echo wp_kses_post( $args['before_widget'] ); if ( ! empty( $instance['title'] ) ) { echo wp_kses_post( $args['before_title'] ) . apply_filters( 'widget_title', esc_html( $instance['title'] ) ) . wp_kses_post( $args['after_title'] ); } $logo = isset( $instance['logo'] ) ? $instance['logo'] : ''; $content = isset( $instance['content'] ) ? $instance['content'] : ''; $address = isset( $instance['address'] ) ? $instance['address'] : ''; $email = isset( $instance['email'] ) ? $instance['email'] : ''; $phone = isset( $instance['phone'] ) ? $instance['phone'] : ''; ?> <?php if ( !empty($logo) ) { ?> <div class="logo"><a href="<?php echo esc_url(home_url('/')); ?>" class="aw-foo-logo"><img src="<?php echo esc_url( $logo ) ; ?>" alt="<?php echo esc_attr('Logo'); ?>"></a></div><?php } ?> <div class="rt-ft-address"> <div class="address"> <?php if ( !empty($content) ): ?> <?php echo wpautop( $content ); ?> <?php endif ?> <?php if (!empty($address)): ?> <p><i class="fas fa-map-marker-alt"></i> <?php echo esc_html($address); ?></p> <?php endif ?> <?php if (!empty($email)): ?> <p><i class="fas fa-envelope"></i> <a href="mailto:<?php echo esc_html($email); ?>"><?php echo esc_html($email); ?></a></p> <?php endif ?> <?php if (!empty($phone)): ?> <p><i class="fas fa-phone-square"></i> <a href="tel:<?php echo esc_html($phone); ?>"><?php echo esc_html($phone); ?></a></p> <?php endif ?> </div> </div> <?php echo wp_kses_post( $args['after_widget'] ); } /** * Sanitize widget form values as they are saved. * * @see WP_Widget::update() * * @param array $new_instance Values just sent to be saved. * @param array $old_instance Previously saved values from database. * * @return array Updated safe values to be saved. */ public function update( $new_instance, $old_instance ){ $instance = array(); $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? sanitize_text_field( $new_instance['title'] ) : ''; $instance['logo'] = ( ! empty( $new_instance['logo'] ) ) ? strip_tags ( $new_instance['logo'] ) : ''; $instance['content'] = ( ! empty( $new_instance['content'] ) ) ? strip_tags ( $new_instance['content'] ) : ''; $instance['address'] = ( ! empty( $new_instance['address'] ) ) ? strip_tags ( $new_instance['address'] ) : ''; $instance['email'] = ( ! empty( $new_instance['email'] ) ) ? strip_tags ( $new_instance['email'] ) : ''; $instance['phone'] = ( ! empty( $new_instance['phone'] ) ) ? strip_tags ( $new_instance['phone'] ) : ''; if ( current_user_can( 'unfiltered_html' ) ) { $instance['content'] = $new_instance['content']; } else { $instance['content'] = wp_kses_post( $new_instance['content'] ); } return $instance; } /** * Back-end widget form. * * @see WP_Widget::form() * * @param array $instance Previously saved values from database. */ public function form($instance){ $logo = !empty( $instance['logo'] ) ? $instance['logo'] : ''; $title = !empty( $instance['title'] ) ? $instance['title'] : ''; $content = !empty( $instance['content'] ) ? $instance['content'] : ''; $address = !empty( $instance['address'] ) ? $instance['address'] : ''; $email = !empty( $instance['email'] ) ? $instance['email'] : ''; $phone = !empty( $instance['phone'] ) ? $instance['phone'] : ''; ?> <p> <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php echo esc_html__('Title:' ,'trydo') ?></label> <input id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" class="widefat" value="<?php echo esc_textarea( $title ); ?>"> </p> <div class="image_box_wrap" style="margin:20px 0 15px 0; width: 100%;"> <button class="button button-primary author_info_image"> <?php esc_html_e('Upload Logo', 'trydo'); ?> </button> <div class="image_box widefat"> <img src="<?php if( !empty($logo)){echo esc_html($logo);} ?>" style="margin:15px 0 0 0;padding:0;max-width: 100%;display:inline-block; height: auto;" alt="<?php echo esc_attr(''); ?>" /> </div> <input type="text" class="widefat image_link" name="<?php echo esc_attr($this->get_field_name('logo')); ?>" id="<?php echo esc_attr($this->get_field_id('logo')); ?>" value="<?php echo esc_attr($logo); ?>" style="margin:15px 0 0 0;"> </div> <p> <label for="<?php echo esc_attr($this->get_field_id('content')); ?>"><?php echo esc_html__('Content:' ,'trydo') ?></label> <textarea id="<?php echo esc_attr($this->get_field_id('content')); ?>" name="<?php echo esc_attr($this->get_field_name('content')); ?>" rows="7" class="widefat" ><?php echo esc_textarea( $content ); ?></textarea> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('address')); ?>"><?php echo esc_html__('Address:' ,'trydo') ?></label> <input id="<?php echo esc_attr($this->get_field_id('address')); ?>" name="<?php echo esc_attr($this->get_field_name('address')); ?>" type="text" class="widefat" value="<?php echo esc_textarea( $address ); ?>"> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('email')); ?>"><?php echo esc_html__('Email:' ,'trydo') ?></label> <input id="<?php echo esc_attr($this->get_field_id('email')); ?>" name="<?php echo esc_attr($this->get_field_name('email')); ?>" type="text" class="widefat" value="<?php echo esc_textarea( $email ); ?>"> </p> <p> <label for="<?php echo esc_attr($this->get_field_id('phone')); ?>"><?php echo esc_html__('Phone:' ,'trydo') ?></label> <input id="<?php echo esc_attr($this->get_field_id('phone')); ?>" name="<?php echo esc_attr($this->get_field_name('phone')); ?>" type="text" class="widefat" value="<?php echo esc_textarea( $phone ); ?>"> </p> <?php } } } function trydo_Info_Widget(){ register_widget('trydo_Info_Widget'); } add_action('widgets_init','trydo_Info_Widget');
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Генерация страницы: 0.08 |
proxy
|
phpinfo
|
Настройка