PluginProbe
Hello Plus / 1.0.3
Hello Plus v1.0.3
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 1.7.2 1.7.3 All 30 releases
hello-plus / hello-plus.php

hello-plus.php in Hello Plus 1.0.3, at hello-plus.php

53 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 * Version: 1.0.3
8 * License: GPL-3
9 * License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10 *
11 * Text Domain: hello-plus
12 *
13 * @package HelloPlus
14 *
15 * Hello+ Plugin is a free WordPress plugin crafted for seamless use with Elementor’s Hello Themes,
16 * tailored to help beginner web creators, but far from limited to just them, to build professional websites with ease.
17 * It features a guided setup, dedicated kits, streamlined management tools,
18 * and specialized widgets (Hello Widgets) to ensure a fast, efficient site-building experience
19 *
20 * Hello+ is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 * See the GNU General Public License for more details.
24 */
25
26 use HelloPlus\Plugin;
27
28 if ( ! defined( 'ABSPATH' ) ) {
29 exit; // Exit if accessed directly.
30 }
31
32 define( 'HELLOPLUS_VERSION', '1.0.3' );
33 define( 'HELLO_PLUS_VERSION', HELLOPLUS_VERSION );
34
35 define( 'HELLOPLUS__FILE__', __FILE__ );
36 define( 'HELLOPLUS_PLUGIN_BASE', plugin_basename( HELLOPLUS__FILE__ ) );
37 define( 'HELLOPLUS_PATH', plugin_dir_path( HELLOPLUS__FILE__ ) );
38 define( 'HELLOPLUS_URL', plugins_url( '', HELLOPLUS__FILE__ ) );
39 define( 'HELLOPLUS_ASSETS_PATH', HELLOPLUS_PATH . 'build/' );
40 define( 'HELLOPLUS_ASSETS_URL', HELLOPLUS_URL . '/build/' );
41 define( 'HELLOPLUS_SCRIPTS_PATH', HELLOPLUS_ASSETS_PATH . 'js/' );
42 define( 'HELLOPLUS_SCRIPTS_URL', HELLOPLUS_ASSETS_URL . 'js/' );
43 define( 'HELLOPLUS_STYLE_PATH', HELLOPLUS_ASSETS_PATH . 'css/' );
44 define( 'HELLOPLUS_STYLE_URL', HELLOPLUS_ASSETS_URL . 'css/' );
45 define( 'HELLOPLUS_IMAGES_PATH', HELLOPLUS_ASSETS_PATH . 'images/' );
46 define( 'HELLOPLUS_IMAGES_URL', HELLOPLUS_ASSETS_URL . 'images/' );
47 define( 'HELLOPLUS_MIN_ELEMENTOR_VERSION', '3.25.11' );
48
49 // Init the Plugin class
50 require HELLOPLUS_PATH . '/plugin.php';
51
52 Plugin::instance();
53