PluginProbe
Divi Torque Lite / trunk
Divi Torque Lite vtrunk
4.11.1 4.11.0 4.10.0 4.9.0 4.8.2 4.8.1 4.8.0 4.7.1 4.7.0 4.6.0 4.5.1 4.5.0 4.4.0 4.3.0 trunk 1.0.1 1.0.2 1.0.3 1.0.4 2.0.0 2.0.1 2.0.2 2.1.1 2.2.3 2.3.2 All 59 releases
addons-for-divi / addons-for-divi.php

addons-for-divi.php in Divi Torque Lite trunk, at addons-for-divi.php

37 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Plugin Name: Divi Torque Lite
4 * Plugin URI: https://divitorque.com
5 * Description: Enhance your Divi website with powerful addons and modules.
6 * Author: PlugPress
7 * Author URI: https://plugpress.io
8 * Version: 4.11.1
9 * Requires at least: 7.0
10 * Requires PHP: 7.4
11 * License: GPL3
12 * License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13 * Text Domain: addons-for-divi
14 * Domain Path: /languages
15 */
16
17 // If this file is called directly, abort.
18 if (!defined('WPINC')) {
19 die;
20 }
21
22 define('DIVI_TORQUE_LITE_FILE', __FILE__);
23 define('DIVI_TORQUE_LITE_BASE', plugin_basename(__FILE__));
24 define('DIVI_TORQUE_LITE_VERSION', '4.11.1');
25 define('DIVI_TORQUE_LITE_DIR', plugin_dir_path(__FILE__));
26 define('DIVI_TORQUE_LITE_URL', plugin_dir_url(__FILE__));
27 define('DIVI_TORQUE_LITE_ASSETS', trailingslashit(DIVI_TORQUE_LITE_URL . 'assets'));
28 define('DIVI_TORQUE_LITE_DIST_URL', trailingslashit(DIVI_TORQUE_LITE_URL . 'dist'));
29 define('DIVI_TORQUE_LITE_MODULES_JSON_PATH', trailingslashit(DIVI_TORQUE_LITE_DIR . 'modules-json'));
30
31 if (file_exists(__DIR__ . '/vendor/autoload.php')) {
32 require_once __DIR__ . '/vendor/autoload.php';
33 }
34
35 require_once DIVI_TORQUE_LITE_DIR . 'includes/plugin.php';
36 require_once DIVI_TORQUE_LITE_DIR . 'includes/divi5/Modules.php';
37