PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.2.9
Easy Elements for Elementor – Addons & Website Templates v1.2.9
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / includes / Extensions / ExtensionHook / HookControl.php

HookControl.php in Easy Elements for Elementor – Addons & Website Templates 1.2.9, at includes/Extensions/ExtensionHook/HookControl.php

19 lines 541 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Easyel\EasyElements\Extensions\ExtensionHook;
3 use Easyel\EasyElements\Extensions\PromoHelper;
4 if ( ! defined( 'ABSPATH' ) ) exit;
5
6 class HookControl {
7
8 public static function register_controls( $element, $scroll_trigger = 'scroll_trigger_html_promo' ) {
9 $promo_html = PromoHelper::get_pro_promo_html();
10
11 $element->add_control(
12 'easy_' . $scroll_trigger,
13 [
14 'type' => \Elementor\Controls_Manager::RAW_HTML,
15 'raw' => $promo_html,
16 ]
17 );
18 }
19 }