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 / video-button / Video_Button_Template.php

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

30 lines 619 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Enteraddons\Widgets\Video_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 Video_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 private static function getDisplaySettings() {
25 return self::$settingsData;
26 }
27 public static function renderTemplate() {
28 self::markup_style_1();
29 }
30 }