| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: HT Builder |
| 4 |
* Description: HT Builder is a elementor addons package for Elementor page builder plugin for WordPress. |
| 5 |
* Plugin URI: https://hasthemes.com/plugins/ |
| 6 |
* Author: HasThemes |
| 7 |
* Author URI: http://hasthemes.com/ |
| 8 |
* Version: 1.3.2 |
| 9 |
* License: GPL2 |
| 10 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 11 |
* Text Domain: ht-builder |
| 12 |
* Domain Path: /languages |
| 13 |
*/ |
| 14 |
|
| 15 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 16 |
|
| 17 |
define( 'HTBUILDER_VERSION', '1.3.2' ); |
| 18 |
define( 'HTBUILDER_PL_ROOT', __FILE__ ); |
| 19 |
define( 'HTBUILDER_PL_URL', plugins_url( '/', HTBUILDER_PL_ROOT ) ); |
| 20 |
define( 'HTBUILDER_PL_PATH', plugin_dir_path( HTBUILDER_PL_ROOT ) ); |
| 21 |
define( 'HTBUILDER_PLUGIN_BASE', plugin_basename( HTBUILDER_PL_ROOT ) ); |
| 22 |
|
| 23 |
// Required File |
| 24 |
require( HTBUILDER_PL_PATH.'includes/base.php' ); |