classes
5 years ago
elementor
5 years ago
elements
5 years ago
define.php
5 years ago
general-functions.php
5 years ago
general-hooks.php
5 years ago
general-shortcodes.php
9 years ago
index.php
5 years ago
define.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | // no direct access allowed |
| 4 | if ( ! defined('ABSPATH') ) { |
| 5 | die(); |
| 6 | } |
| 7 | |
| 8 | // theme name |
| 9 | if( ! defined( 'THEME_NAME' ) ){ |
| 10 | $theme_data = wp_get_theme(); |
| 11 | define( 'THEME_NAME', $theme_data->Name ); |
| 12 | } |
| 13 | |
| 14 | |
| 15 | define( 'AUXELS_VERSION' , '2.7.10' ); |
| 16 | |
| 17 | define( 'AUXELS_SLUG' , 'auxin-elements' ); |
| 18 | |
| 19 | define( 'AUXELS_PURCHASE_KEY' , 'envato_purchase_code_3909293' ); |
| 20 | |
| 21 | |
| 22 | define( 'AUXELS_DIR' , dirname( plugin_dir_path( __FILE__ ) ) ); |
| 23 | define( 'AUXELS_URL' , plugins_url( '', plugin_dir_path( __FILE__ ) ) ); |
| 24 | define( 'AUXELS_BASE_NAME' , plugin_basename( AUXELS_DIR ) . '/auxin-elements.php' ); // auxin-elements/auxin-elements.php |
| 25 | |
| 26 | |
| 27 | define( 'AUXELS_ADMIN_DIR' , AUXELS_DIR . '/admin' ); |
| 28 | define( 'AUXELS_ADMIN_URL' , AUXELS_URL . '/admin' ); |
| 29 | |
| 30 | define( 'AUXELS_INC_DIR' , AUXELS_DIR . '/includes' ); |
| 31 | define( 'AUXELS_INC_URL' , AUXELS_URL . '/includes' ); |
| 32 | |
| 33 | define( 'AUXELS_PUB_DIR' , AUXELS_DIR . '/public' ); |
| 34 | define( 'AUXELS_PUB_URL' , AUXELS_URL . '/public' ); |
| 35 |