| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * Plugin Name: Hello Plus |
|---|
| 4 | * Description: Boost your Elementor website with business-ready bonus widgets |
|---|
| 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.7.7 |
|---|
| 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+ is a free WordPress plugin designed to work seamlessly with Elementor’s Hello suite of themes. |
|---|
| 17 | * Hello+ includes specialized Hello widgets such as a Header, Footer, Zigzag, Form Lite, and more. |
|---|
| 18 | * Hello widgets help you build faster and create polished, professional websites. |
|---|
| 19 | * To use Hello+, you’ll need to install one of Elementor’s Hello suite of themes. |
|---|
| 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.7.7' ); |
|---|
| 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 . 'assets/' ); |
|---|
| 41 | define( 'HELLOPLUS_ASSETS_URL', HELLOPLUS_URL . '/assets/' ); |
|---|
| 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(); |
|---|