# copy-the-code/3.8.2/classes/elementor/widgets/contact-information/widget.php

Copy Anything to Clipboard for WordPress – Copy Button, Copy Text &amp; Copy Code, version 3.8.2. 360 lines.

- Page: https://pluginprobe.com/plugins/copy-the-code/3.8.2/code/classes/elementor/widgets/contact-information/widget.php
- Raw: https://pluginprobe.com/plugins/copy-the-code/3.8.2/raw/classes/elementor/widgets/contact-information/widget.php
- Modified: 2024-05-07T18:07:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/copy-the-code/3.8.2/code/classes/elementor/widgets/contact-information/widget.php#L10-L20`.

```php
<?php

/**
 * Elementor Contact Information Block
 *
 * @package Copy the Code
 * @since 3.1.0
 */
namespace CopyTheCode\Elementor\Block;

use CopyTheCode\Helpers;
use Elementor\Widget_Base;
use Elementor\Controls_Manager;
/**
 * Contact Information Block
 *
 * @since 3.1.0
 */
class ContactInformation extends Widget_Base {
    /**
     * Constructor
     *
     * @param array $data
     * @param array $args
     *
     * @since 3.1.0
     */
    public function __construct( $data = [], $args = null ) {
        parent::__construct( $data, $args );
        // Core.
        wp_enqueue_style(
            'ctc-blocks-core',
            COPY_THE_CODE_URI . 'classes/blocks/assets/css/style.css',
            [],
            COPY_THE_CODE_VER,
            'all'
        );
        wp_enqueue_script(
            'ctc-clipboard',
            COPY_THE_CODE_URI . 'assets/js/clipboard.js',
            ['jquery'],
            COPY_THE_CODE_VER,
            true
        );
        wp_enqueue_script(
            'ctc-blocks-core',
            COPY_THE_CODE_URI . 'classes/blocks/assets/js/core.js',
            ['ctc-clipboard'],
            COPY_THE_CODE_VER,
            true
        );
        // Block.
        wp_enqueue_style(
            'ctc-el-contact-information',
            COPY_THE_CODE_URI . 'classes/elementor/widgets/contact-information/style.css',
            ['ctc-blocks-core'],
            COPY_THE_CODE_VER,
            'all'
        );
    }

    /**
     * Get script dependencies
     */
    public function get_script_depends() {
        return ['ctc-el-contact-information'];
    }

    /**
     * Get style dependencies
     */
    public function get_style_depends() {
        return ['ctc-blocks-core'];
    }

    /**
     * Get name
     */
    public function get_name() {
        return 'ctc_contact_information';
    }

    /**
     * Get title
     */
    public function get_title() {
        return esc_html__( 'Contact Information', 'copy-the-code' );
    }

    /**
     * Get icon
     */
    public function get_icon() {
        return 'eicon-menu-toggle';
    }

    /**
     * Get categories
     */
    public function get_categories() {
        return Helpers::get_categories();
    }

    /**
     * Get keywords
     */
    public function get_keywords() {
        return Helpers::get_keywords( [
            'contact',
            'information',
            'copy',
            'content',
            'template'
        ] );
    }

    /**
     * Get SVG icon
     */
    public function get_svg_icon( $link = '' ) {
        if ( strpos( $link, 'facebook' ) !== false ) {
            return Helpers::get_svg_facebook_icon();
        }
        if ( strpos( $link, 'twitter' ) !== false ) {
            return Helpers::get_svg_twitter_icon();
        }
        if ( strpos( $link, 'linkedin' ) !== false ) {
            return Helpers::get_svg_linkedin_icon();
        }
        if ( strpos( $link, 'pinterest' ) !== false ) {
            return Helpers::get_svg_pinterest_icon();
        }
        if ( strpos( $link, 'whatsapp' ) !== false ) {
            return Helpers::get_svg_whatsapp_icon();
        }
        return Helpers::get_svg_link_icon();
    }

    /**
     * Render
     */
    public function render() {
        $contact_heading = $this->get_settings_for_display( 'contact_heading' );
        $contact_fields = $this->get_settings_for_display( 'contact_fields' );
        $social_heading = $this->get_settings_for_display( 'social_heading' );
        $social_profiles = $this->get_settings_for_display( 'social_profiles' );
        if ( empty( $contact_fields ) && empty( $social_profiles ) && empty( $contact_heading ) && empty( $social_heading ) ) {
            return;
        }
        ?>
		<div class="ctc-block ctc-contact-information">
			<div class="ctc-block-content">

				<?php 
        if ( !empty( $contact_heading ) ) {
            ?>
					<div class="ctc-block-heading ctc-contact-heading">
						<?php 
            echo esc_html( $contact_heading );
            ?>
					</div>
				<?php 
        }
        ?>

				<?php 
        if ( !empty( $contact_fields ) ) {
            ?>
					<div class="ctc-block-fields">
						<?php 
            foreach ( $contact_fields as $contact_field ) {
                ?>
							<div class="ctc-block-field">
								<div class="ctc-block-field-label">
									<?php 
                echo esc_html( $contact_field['label'] );
                ?>
								</div>
								<div class="ctc-block-field-value">
									<?php 
                echo do_shortcode( '[copy_inline text="' . esc_html( $contact_field['value'] ) . '"]' );
                ?>
								</div>
							</div>
						<?php 
            }
            ?>
					</div>
				<?php 
        }
        ?>

				<?php 
        if ( !empty( $social_heading ) ) {
            ?>
					<div class="ctc-block-heading ctc-social-heading">
						<?php 
            echo esc_html( $social_heading );
            ?>
					</div>
				<?php 
        }
        ?>

				<?php 
        if ( !empty( $social_profiles ) ) {
            ?>
					<div class="ctc-block-social">
						<?php 
            foreach ( $social_profiles as $social_profile ) {
                ?>
							<div class="ctc-block-social-profile-link">
								<a href="<?php 
                echo esc_url( $social_profile['link'] );
                ?>" target="_blank" rel="nofollow noopener noreferrer">
									<?php 
                echo $this->get_svg_icon( $social_profile['link'] );
                ?>
								</a>
							</div>
						<?php 
            }
            ?>
					</div>
				<?php 
        }
        ?>

			</div>
			<div class="ctc-block-actions">
				<?php 
        Helpers::render_copy_button( $this );
        ?>
			</div>
			<?php 
        Helpers::render_copy_content( $this );
        ?>
		</div>
		<?php 
    }

    /**
     * Register controls
     */
    protected function _register_controls() {
        $default = 'Contact Information

Name: John Doe
Email: contact@clipboard.agency
Phone: +1 123 456 7890
Address: 123 Street, City, Country

Social Profiles: 

https://facebook.com
https://twitter.com
https://linkedin.com';
        Helpers::register_copy_content_section( $this, [
            'default' => $default,
        ] );
        /**
         * Group: Contact Information Section
         */
        $this->start_controls_section( 'fields_section', [
            'label' => esc_html__( 'Contact Information', 'copy-the-code' ),
        ] );
        // Contact fields.
        $this->add_control( 'contact_heading', [
            'label'       => esc_html__( 'Heading', 'copy-the-code' ),
            'type'        => Controls_Manager::TEXT,
            'default'     => esc_html__( 'Contact Information', 'copy-the-code' ),
            'placeholder' => esc_html__( 'Enter your contact fields heading', 'copy-the-code' ),
        ] );
        // Contact fields.
        $this->add_control( 'contact_fields', [
            'label'       => esc_html__( 'Contact Fields', 'copy-the-code' ),
            'type'        => Controls_Manager::REPEATER,
            'fields'      => [[
                'name'        => 'label',
                'label'       => esc_html__( 'Label', 'copy-the-code' ),
                'type'        => Controls_Manager::TEXT,
                'label_block' => true,
            ], [
                'name'        => 'value',
                'label'       => esc_html__( 'Value', 'copy-the-code' ),
                'type'        => Controls_Manager::TEXT,
                'label_block' => true,
            ]],
            'default'     => [
                [
                    'label' => esc_html__( 'Name: ', 'copy-the-code' ),
                    'value' => 'John Doe',
                ],
                [
                    'label' => esc_html__( 'Email: ', 'copy-the-code' ),
                    'value' => 'contact@clipboard.agency',
                ],
                [
                    'label' => esc_html__( 'Phone: ', 'copy-the-code' ),
                    'value' => '+1 123 456 7890',
                ],
                [
                    'label' => esc_html__( 'Address: ', 'copy-the-code' ),
                    'value' => '123 Street, City, Country',
                ]
            ],
            'title_field' => '{{{ name }}}',
        ] );
        $this->end_controls_section();
        /**
         * Group: Social Profiles Section
         */
        $this->start_controls_section( 'social_profiles_section', [
            'label' => esc_html__( 'Social Profiles', 'copy-the-code' ),
        ] );
        // Social profiles.
        $this->add_control( 'social_heading', [
            'label'       => esc_html__( 'Heading', 'copy-the-code' ),
            'type'        => Controls_Manager::TEXT,
            'default'     => esc_html__( 'Social Profiles', 'copy-the-code' ),
            'placeholder' => esc_html__( 'Enter your social profiles heading', 'copy-the-code' ),
        ] );
        // Social profiles.
        $this->add_control( 'social_profiles', [
            'label'       => esc_html__( 'Social Profiles', 'copy-the-code' ),
            'type'        => Controls_Manager::REPEATER,
            'fields'      => [[
                'name'        => 'link',
                'label'       => esc_html__( 'Link', 'copy-the-code' ),
                'type'        => Controls_Manager::TEXT,
                'label_block' => true,
            ]],
            'default'     => [[
                'link' => 'https://facebook.com',
            ], [
                'link' => 'https://twitter.com',
            ], [
                'link' => 'https://linkedin.com',
            ]],
            'title_field' => '{{{ name }}}',
        ] );
        $this->end_controls_section();
        Helpers::register_copy_button_section( $this, [
            'button_text' => esc_html__( 'Copy Contact Information', 'copy-the-code' ),
        ] );
        Helpers::register_pro_sections( $this, [
            'Box',
            'Contact Heading',
            'Contact Fields',
            'Contact Field',
            'Field Label',
            'Field Value',
            'Social Heading',
            'Social Icon'
        ] );
        Helpers::register_copy_button_style_section( $this );
    }

}

```
