PluginProbe
Borderless – Addons and Templates for Elementor / 1.2.7
Borderless – Addons and Templates for Elementor v1.2.7
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 All 78 releases
borderless / borderless.php

borderless.php in Borderless – Addons and Templates for Elementor 1.2.7, at borderless.php

50 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 Plugin Name: Borderless
5 Plugin URI: https://wpborderless.com/
6 Description: One service packed with powerful tools to help you reach your purposes.
7 Version: 1.2.7
8 Author: Visualmodo
9 Author URI: https://unicorp.global
10 License: GPLv3 or later
11 Text Domain: borderless
12 Domain Path: /languages
13 */
14
15 // don't load directly
16 defined( 'ABSPATH' ) || exit;
17
18
19 /*-----------------------------------------------------------------------------------*/
20 /* *. Borderless Constants
21 /*-----------------------------------------------------------------------------------*/
22
23 define( 'BORDERLESS__VERSION', '1.2.7' );
24 define( 'BORDERLESS__DIR', plugin_dir_path( __FILE__ ) );
25 define( 'BORDERLESS__URL', plugins_url( '/', __FILE__ ) );
26 define( 'BORDERLESS__INC', BORDERLESS__DIR . '/includes' );
27 define( 'BORDERLESS__ASSETS', BORDERLESS__URL . 'assets/' );
28 define( 'BORDERLESS__STYLES', BORDERLESS__ASSETS . 'styles/' );
29 define( 'BORDERLESS__SCRIPTS', BORDERLESS__ASSETS . 'scripts/' );
30 define( 'BORDERLESS__WPBAKERY', BORDERLESS__DIR . '/modules/wpbakery' );
31 define( 'BORDERLESS__ELEMENTOR', BORDERLESS__DIR . '/modules/elementor' );
32 define( 'BORDERLESS__RELATED_POSTS', BORDERLESS__DIR . '/modules/related-posts' );
33
34 /*-----------------------------------------------------------------------------------*/
35 /* *. Borderless Core
36 /*-----------------------------------------------------------------------------------*/
37
38 require plugin_dir_path( __FILE__ ) . 'includes/class-borderless.php';
39
40 /*-----------------------------------------------------------------------------------*/
41 /* *. Borderless Init
42 /*-----------------------------------------------------------------------------------*/
43
44 function run_borderless() {
45
46 $plugin = new Borderless();
47 $plugin->run();
48
49 }
50 run_borderless();