# borderless/1.2.5/borderless.php

Borderless – Addons and Templates for Elementor, version 1.2.5. 48 lines.

- Page: https://pluginprobe.com/plugins/borderless/1.2.5/code/borderless.php
- Raw: https://pluginprobe.com/plugins/borderless/1.2.5/raw/borderless.php
- Modified: 2021-09-06T21:03:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/borderless/1.2.5/code/borderless.php#L10-L20`.

```php
<?php

/*
Plugin Name: Borderless
Plugin URI: https://wpborderless.com/
Description: One service packed with powerful tools to help you reach your purposes.
Version: 1.2.5
Author: Visualmodo
Author URI: https://unicorp.global
License: GPLv3 or later
Text Domain: borderless
Domain Path: /languages
*/

// don't load directly
defined( 'ABSPATH' ) || exit;


/*-----------------------------------------------------------------------------------*/
/*  *.  Borderless Constants
/*-----------------------------------------------------------------------------------*/

define( 'BORDERLESS__VERSION', '1.2.5' );
define( 'BORDERLESS__DIR', plugin_dir_path( __FILE__ ) );
define( 'BORDERLESS__URL', plugins_url( '/', __FILE__ ) );
define( 'BORDERLESS__INC', BORDERLESS__DIR . '/includes' );
define( 'BORDERLESS__ASSETS', BORDERLESS__DIR . '/assets' );
define( 'BORDERLESS__WPBAKERY', BORDERLESS__DIR . '/modules/wpbakery' );
define( 'BORDERLESS__ELEMENTOR', BORDERLESS__DIR . '/modules/elementor' );
define( 'BORDERLESS__RELATED_POSTS', BORDERLESS__DIR . '/modules/related-posts' );

/*-----------------------------------------------------------------------------------*/
/*  *.  Borderless Core
/*-----------------------------------------------------------------------------------*/

require plugin_dir_path( __FILE__ ) . 'includes/class-borderless.php';

/*-----------------------------------------------------------------------------------*/
/*  *.  Borderless Init
/*-----------------------------------------------------------------------------------*/

function run_borderless() {

	$plugin = new Borderless();
	$plugin->run();

}
run_borderless();
```
