| 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.8 |
| 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.8' ); |
| 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(); |