| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: WDesignKit - Templates, Widgets & Cloud |
| 4 |
* Plugin URI: https://wdesignkit.com/ |
| 5 |
* Description: Your All-in-One solution for effortless WordPress website creation and collaboration. With over 1,000+ Elementor and WordPress website templates, a library of 50+ pre-made widgets for Elementor, Gutenberg Blocks, and Bricks, along with a cloud workspace for collaboration and more. |
| 6 |
* Version: 1.0.36 |
| 7 |
* Author: POSIMYTH |
| 8 |
* Author URI: https://posimyth.com/ |
| 9 |
* Text Domain: wdesignkit |
| 10 |
* Domain Path: /languages |
| 11 |
* License: GPLv2 |
| 12 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 13 |
* |
| 14 |
* @package wdesignkit |
| 15 |
*/ |
| 16 |
|
| 17 |
/** If this file is called directly, abort. */ |
| 18 |
if ( ! defined( 'ABSPATH' ) ) { |
| 19 |
exit; |
| 20 |
} |
| 21 |
|
| 22 |
define( 'WDKIT_VERSION', '1.0.36' ); |
| 23 |
define( 'WDKIT_FILE', __FILE__ ); |
| 24 |
define( 'WDKIT_PATH', plugin_dir_path( __FILE__ ) ); |
| 25 |
define( 'WDKIT_PBNAME', plugin_basename( __FILE__ ) ); |
| 26 |
define( 'WDKIT_BDNAME', basename( dirname( __FILE__ )) ); |
| 27 |
define( 'WDKIT_URL', plugins_url( '/', __FILE__ ) ); |
| 28 |
define( 'WDKIT_HOSTURL', site_url() ); |
| 29 |
define( 'WDKIT_INCLUDES', WDKIT_PATH . '/includes/' ); |
| 30 |
define( 'WDKIT_ASSETS', WDKIT_URL . 'assets/' ); |
| 31 |
define( 'WDKIT_TEXT_DOMAIN', 'wdesignkit' ); |
| 32 |
define( 'WDKIT_SERVER_SITE_URL', 'https://wdesignkit.com/' ); |
| 33 |
define( 'WDKIT_DOCUMENT', 'https://learn.wdesignkit.com/' ); |
| 34 |
|
| 35 |
/** Widget Builder path*/ |
| 36 |
define( 'WDKIT_SERVER_PATH', wp_upload_dir()['baseurl'] . '/wdesignkit' ); |
| 37 |
define( 'WDKIT_BUILDER_PATH', wp_upload_dir()['basedir'] . '/wdesignkit' ); |
| 38 |
define( 'WDKIT_GET_SITE_URL', get_site_url() ); |
| 39 |
|
| 40 |
require WDKIT_PATH . 'includes/class-wdkit-wdesignkit.php'; |