PATH:
home
/
letacommog
/
lesfinessaveurs
/
wp-content
/
themes
/
Avada
/
includes
/
widget
<?php /** * Widget Class. * * @author ThemeFusion * @copyright (c) Copyright by ThemeFusion * @link http://theme-fusion.com * @package Avada * @subpackage Core */ // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * Widget class. */ class Fusion_Widget_Contact_Info extends WP_Widget { /** * Constructor. * * @access public */ public function __construct() { $widget_ops = array( 'classname' => 'contact_info', 'description' => __( 'Adds custom contact information.', 'Avada' ), ); $control_ops = array( 'id_base' => 'contact_info-widget', ); parent::__construct( 'contact_info-widget', __( 'Avada: Contact Info', 'Avada' ), $widget_ops, $control_ops ); } /** * Echoes the widget content. * * @access public * @param array $args Display arguments including 'before_title', 'after_title', * 'before_widget', and 'after_widget'. * @param array $instance The settings for the particular instance of the widget. */ public function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', isset( $instance['title'] ) ? $instance['title'] : '' ); echo $before_widget; // WPCS: XSS ok. if ( $title ) { echo $before_title . $title . $after_title; // WPCS: XSS ok. } ?> <div class="contact-info-container"> <?php if ( isset( $instance['address'] ) && $instance['address'] ) : ?> <p class="address"><?php echo $instance['address']; // WPCS: XSS ok. ?></p> <?php endif; ?> <?php if ( isset( $instance['phone'] ) && $instance['phone'] ) : ?> <p class="phone"><?php esc_attr_e( 'Phone:', 'Avada' ); ?> <?php echo $instance['phone']; // WPCS: XSS ok. ?></p> <?php endif; ?> <?php if ( isset( $instance['mobile'] ) && $instance['mobile'] ) : ?> <p class="mobile"><?php esc_attr_e( 'Mobile:', 'Avada' ); ?> <?php echo $instance['mobile']; // WPCS: XSS ok. ?></p> <?php endif; ?> <?php if ( isset( $instance['fax'] ) && $instance['fax'] ) : ?> <p class="fax"><?php esc_attr_e( 'Fax:', 'Avada' ); ?> <?php echo $instance['fax']; // WPCS: XSS ok. ?></p> <?php endif; ?> <?php if ( isset( $instance['email'] ) && $instance['email'] ) : ?> <p class="email"><?php esc_attr_e( 'Email:', 'Avada' ); ?> <a href="mailto:<?php echo antispambot( $instance['email'] ); // WPCS: XSS ok. ?>"><?php echo ( $instance['emailtxt'] ) ? $instance['emailtxt'] : $instance['email']; // WPCS: XSS ok. ?></a></p> <?php endif; ?> <?php if ( isset( $instance['web'] ) && $instance['web'] ) : ?> <p class="web"><?php esc_attr_e( 'Web:', 'Avada' ); ?> <a href="<?php echo esc_url_raw( $instance['web'] ); ?>"> <?php if ( isset( $instance['webtxt'] ) && $instance['webtxt'] ) : ?> <?php echo $instance['webtxt']; // WPCS: XSS ok. ?> <?php else : ?> <?php echo $instance['web']; // WPCS: XSS ok. ?> <?php endif; ?> </a></p> <?php endif; ?> </div> <?php echo $after_widget; // WPCS: XSS ok. } /** * Updates a particular instance of a widget. * * This function should check that `$new_instance` is set correctly. The newly-calculated * value of `$instance` should be returned. If false is returned, the instance won't be * saved/updated. * * @access public * @param array $new_instance New settings for this instance as input by the user via * WP_Widget::form(). * @param array $old_instance Old settings for this instance. * @return array Settings to save or bool false to cancel saving. */ public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = isset( $new_instance['title'] ) ? $new_instance['title'] : ''; $instance['address'] = isset( $new_instance['address'] ) ? $new_instance['address'] : ''; $instance['phone'] = isset( $new_instance['phone'] ) ? $new_instance['phone'] : ''; $instance['mobile'] = isset( $new_instance['mobile'] ) ? $new_instance['mobile'] : ''; $instance['fax'] = isset( $new_instance['fax'] ) ? $new_instance['fax'] : ''; $instance['email'] = isset( $new_instance['email'] ) ? $new_instance['email'] : ''; $instance['emailtxt'] = isset( $new_instance['emailtxt'] ) ? $new_instance['emailtxt'] : ''; $instance['web'] = isset( $new_instance['web'] ) ? $new_instance['web'] : ''; $instance['webtxt'] = isset( $new_instance['webtxt'] ) ? $new_instance['webtxt'] : ''; return $instance; } /** * Outputs the settings update form. * * @access public * @param array $instance Current settings. */ public function form( $instance ) { $defaults = array( 'title' => 'Contact Info', 'address' => '', 'phone' => '', 'mobile' => '', 'fax' => '', 'email' => '', 'emailtxt' => '', 'web' => '', 'webtxt' => '', ); $instance = wp_parse_args( (array) $instance, $defaults ); ?> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_attr_e( 'Title:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" value="<?php echo esc_attr( $instance['title'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'address' ) ); ?>"><?php esc_attr_e( 'Address:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'address' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'address' ) ); ?>" value="<?php echo esc_attr( $instance['address'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'phone' ) ); ?>"><?php esc_attr_e( 'Phone:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'phone' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'phone' ) ); ?>" value="<?php echo esc_attr( $instance['phone'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'mobile' ) ); ?>"><?php esc_attr_e( 'Mobile:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'mobile' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'mobile' ) ); ?>" value="<?php echo esc_attr( $instance['mobile'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'fax' ) ); ?>"><?php esc_attr_e( 'Fax:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'fax' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'fax' ) ); ?>" value="<?php echo esc_attr( $instance['fax'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'email' ) ); ?>"><?php esc_attr_e( 'Email:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'email' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'email' ) ); ?>" value="<?php echo esc_attr( $instance['email'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'emailtxt' ) ); ?>"><?php esc_attr_e( 'Email Link Text:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'emailtxt' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'emailtxt' ) ); ?>" value="<?php echo esc_attr( $instance['emailtxt'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'web' ) ); ?>"><?php esc_attr_e( 'Website URL (with HTTP):', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'web' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'web' ) ); ?>" value="<?php echo esc_attr( $instance['web'] ); ?>" /> </p> <p> <label for="<?php echo esc_attr( $this->get_field_id( 'webtxt' ) ); ?>"><?php esc_attr_e( 'Website URL Text:', 'Avada' ); ?></label> <input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'webtxt' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'webtxt' ) ); ?>" value="<?php echo esc_attr( $instance['webtxt'] ); ?>" /> </p> <?php } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */
[+]
..
[-] class-fusion-widget-vertical-menu.php
[edit]
[-] class-fusion-widget-flickr.php
[edit]
[-] class-fusion-widget-recent-works.php
[edit]
[-] class-fusion-widget-author.php
[edit]
[-] class-fusion-widget-social-links.php
[edit]
[-] class-fusion-widget-contact-info.php
[edit]
[-] class-fusion-widget-menu.php
[edit]
[-] class-fusion-widget-tabs.php
[edit]
[-] class-fusion-widget-tweets.php
[edit]
[-] class-fusion-widget-ad-125-125.php
[edit]
[-] class-fusion-widget-facebook-page.php
[edit]