-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsolid-dynamics.php
More file actions
executable file
·38 lines (26 loc) · 925 Bytes
/
solid-dynamics.php
File metadata and controls
executable file
·38 lines (26 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Plugin Name: Solid Dynamics
* Description: Helpful utilities for Elementor, Jet Engine, and beyond.
* Version: 1.12.0
* Author: Solid Digital
* Author URI: https://www.soliddigital.com
* License: GPLv2
* Text Domain: solid-dynamics
* Domain Path: /languages
*/
namespace Solid;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once( __DIR__ . "/classes/elementor-display-conditions.php" );
new ElementorDisplayConditions();
require_once( __DIR__ . "/classes/elementor-dynamic-tags.php" );
new ElementorDynamicTags();
require_once( __DIR__ . "/classes/jet-engine-macros.php" );
new JetEngineMacros();
require_once( __DIR__ . "/settings/settings.php" );
new Settings();
require_once( __DIR__ . "/admin-pages/widget-usage.php" );
require_once( __DIR__ . "/admin-pages/custom-css-usage.php" );