Plugin Directory

source: hello-plus/trunk/hello-plus.php

Last change on this file was 3363941, checked in by KingYes, 6 months ago

Upload v1.7.7

File size: 2.1 KB
Line 
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
27use HelloPlus\Plugin;
28
29if ( ! defined( 'ABSPATH' ) ) {
30        exit; // Exit if accessed directly.
31}
32
33define( 'HELLOPLUS_VERSION', '1.7.7' );
34define( 'HELLO_PLUS_VERSION', HELLOPLUS_VERSION );
35
36define( 'HELLOPLUS__FILE__', __FILE__ );
37define( 'HELLOPLUS_PLUGIN_BASE', plugin_basename( HELLOPLUS__FILE__ ) );
38define( 'HELLOPLUS_PATH', plugin_dir_path( HELLOPLUS__FILE__ ) );
39define( 'HELLOPLUS_URL', plugins_url( '', HELLOPLUS__FILE__ ) );
40define( 'HELLOPLUS_ASSETS_PATH', HELLOPLUS_PATH . 'assets/' );
41define( 'HELLOPLUS_ASSETS_URL', HELLOPLUS_URL . '/assets/' );
42define( 'HELLOPLUS_SCRIPTS_PATH', HELLOPLUS_ASSETS_PATH . 'js/' );
43define( 'HELLOPLUS_SCRIPTS_URL', HELLOPLUS_ASSETS_URL . 'js/' );
44define( 'HELLOPLUS_STYLE_PATH', HELLOPLUS_ASSETS_PATH . 'css/' );
45define( 'HELLOPLUS_STYLE_URL', HELLOPLUS_ASSETS_URL . 'css/' );
46define( 'HELLOPLUS_IMAGES_PATH', HELLOPLUS_ASSETS_PATH . 'images/' );
47define( 'HELLOPLUS_IMAGES_URL', HELLOPLUS_ASSETS_URL . 'images/' );
48define( 'HELLOPLUS_MIN_ELEMENTOR_VERSION', '3.27.1' );
49
50// Init the Plugin class
51require HELLOPLUS_PATH . '/plugin.php';
52
53Plugin::instance();
Note: See TracBrowser for help on using the repository browser.