PluginProbe
Enter Addons – Ultimate Template Builder for Elementor / trunk
Enter Addons – Ultimate Template Builder for Elementor vtrunk
trunk 2.2.10 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4
enteraddons / widgets / button / Button_Template.php

Button_Template.php in Enter Addons – Ultimate Template Builder for Elementor trunk, at widgets/button/Button_Template.php

34 lines 614 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Enteraddons\Widgets\Button;
3 /**
4 * Enteraddons widget template class
5 *
6 * @package Enteraddons
7 * @author ThemeLooks
8 * @copyright 2022 ThemeLooks
9 * @license GPL-2.0-or-later
10 *
11 *
12 */
13
14 class Button_Template {
15
16 use Traits\Templates_Components;
17 use Traits\Template_1;
18
19 private static $settingsData;
20
21 public static function setDisplaySettings( $data ) {
22 self::$settingsData = $data;
23 }
24
25 private static function getDisplaySettings() {
26 return self::$settingsData;
27 }
28
29 public static function renderTemplate() {
30 self::markup_style_1();
31 }
32
33 }
34