| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Hello Plus |
| 4 |
* Description: Puts the PLUS in Elementor's Hello+ themes |
| 5 |
* Plugin URI: https://elementor.com |
| 6 |
* Author: Elementor.com |
| 7 |
* Author URI: https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash |
| 8 |
* Version: 1.5.3 |
| 9 |
* License: GPL-3 |
| 10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html |
| 11 |
* |
| 12 |
* Text Domain: hello-plus |
| 13 |
* |
| 14 |
* @package HelloPlus |
| 15 |
* |
| 16 |
* Hello+ Plugin is a free WordPress plugin crafted for seamless use with Elementor’s Hello Biz Theme, |
| 17 |
* tailored to help beginner web creators, but far from limited to just them, to build professional websites with ease. |
| 18 |
* It features a guided setup, dedicated kits, streamlined management tools, |
| 19 |
* and specialized widgets (Hello Widgets) to ensure a fast, efficient site-building experience |
| 20 |
* |
| 21 |
* Hello+ is distributed in the hope that it will be useful, |
| 22 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 23 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 24 |
* See the GNU General Public License for more details. |
| 25 |
*/ |
| 26 |
|
| 27 |
use HelloPlus\Plugin; |
| 28 |
|
| 29 |
if ( ! defined( 'ABSPATH' ) ) { |
| 30 |
exit; // Exit if accessed directly. |
| 31 |
} |
| 32 |
|
| 33 |
define( 'HELLOPLUS_VERSION', '1.5.3' ); |
| 34 |
define( 'HELLO_PLUS_VERSION', HELLOPLUS_VERSION ); |
| 35 |
|
| 36 |
define( 'HELLOPLUS__FILE__', __FILE__ ); |
| 37 |
define( 'HELLOPLUS_PLUGIN_BASE', plugin_basename( HELLOPLUS__FILE__ ) ); |
| 38 |
define( 'HELLOPLUS_PATH', plugin_dir_path( HELLOPLUS__FILE__ ) ); |
| 39 |
define( 'HELLOPLUS_URL', plugins_url( '', HELLOPLUS__FILE__ ) ); |
| 40 |
define( 'HELLOPLUS_ASSETS_PATH', HELLOPLUS_PATH . 'build/' ); |
| 41 |
define( 'HELLOPLUS_ASSETS_URL', HELLOPLUS_URL . '/build/' ); |
| 42 |
define( 'HELLOPLUS_SCRIPTS_PATH', HELLOPLUS_ASSETS_PATH . 'js/' ); |
| 43 |
define( 'HELLOPLUS_SCRIPTS_URL', HELLOPLUS_ASSETS_URL . 'js/' ); |
| 44 |
define( 'HELLOPLUS_STYLE_PATH', HELLOPLUS_ASSETS_PATH . 'css/' ); |
| 45 |
define( 'HELLOPLUS_STYLE_URL', HELLOPLUS_ASSETS_URL . 'css/' ); |
| 46 |
define( 'HELLOPLUS_IMAGES_PATH', HELLOPLUS_ASSETS_PATH . 'images/' ); |
| 47 |
define( 'HELLOPLUS_IMAGES_URL', HELLOPLUS_ASSETS_URL . 'images/' ); |
| 48 |
define( 'HELLOPLUS_MIN_ELEMENTOR_VERSION', '3.27.1' ); |
| 49 |
|
| 50 |
// Init the Plugin class |
| 51 |
require HELLOPLUS_PATH . '/plugin.php'; |
| 52 |
|
| 53 |
Plugin::instance(); |
| 54 |
|