# easy-elements/1.4.7/includes/Extensions/WrapperLink/Controls/LinkControls.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.4.7. 25 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.4.7/code/includes/Extensions/WrapperLink/Controls/LinkControls.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.4.7/raw/includes/Extensions/WrapperLink/Controls/LinkControls.php
- Modified: 2026-06-03T10:59:44+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/easy-elements/1.4.7/code/includes/Extensions/WrapperLink/Controls/LinkControls.php#L10-L20`.

```php
<?php
namespace Easyel\EasyElements\Extensions\WrapperLink\Controls;
if ( ! defined( 'ABSPATH' ) ) exit;

class LinkControls {

	public static function register_controls( $element ) {

        $element->add_control(
            'easyel_wrapper_link_url',
            [
                'label'       => __( 'Link', 'easy-elements' ),
                'type'        => \Elementor\Controls_Manager::URL,
                'placeholder' => __( 'https://your-link.com', 'easy-elements' ),
                'dynamic'     => [ 'active' => true ],
                'default'     => [
                    'url'         => '',
                    'is_external' => false,
                    'nofollow'    => false,
                ],
                'show_external' => true,
            ]
        );
    }
}
```
