Changeset 2566311
- Timestamp:
- 07/17/2021 12:34:02 PM (5 years ago)
- File:
-
- 1 edited
-
wc-poczta/trunk/wc-poczta.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-poczta/trunk/wc-poczta.php
r2566307 r2566311 17 17 * License: GPL-3.0 18 18 * License URI: https://www.gnu.org/licenses/gpl-3.0.txt 19 * Version: 1.3. 219 * Version: 1.3.3 20 20 * Text Domain: wc_poczta 21 21 * Domain Path: /languages … … 32 32 $pluginPath = plugin_dir_path(__FILE__); 33 33 34 if (defined('WP_DEBUG') && WP_DEBUG && is_file($pluginPath . 'vendor \\autoload.php')) {35 require_once $pluginPath . 'vendor \\autoload.php';34 if (defined('WP_DEBUG') && WP_DEBUG && is_file($pluginPath . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php')) { 35 require_once $pluginPath . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; 36 36 } 37 37 38 require_once $pluginPath . 'code\\core\\' . 'Helpers.php'; 39 require_once $pluginPath . 'code\\core\\' . 'Bootstrap.php'; 40 require_once $pluginPath . 'code\\core\\' . 'Actions.php'; 41 require_once $pluginPath . 'code\\core\\' . 'ShippingRegistrar.php'; 38 $corePath = 'code' . DIRECTORY_SEPARATOR . 'core' . DIRECTORY_SEPARATOR; 39 40 require_once $pluginPath . $corePath . 'Helpers.php'; 41 require_once $pluginPath . $corePath . 'Bootstrap.php'; 42 require_once $pluginPath . $corePath . 'Actions.php'; 43 require_once $pluginPath . $corePath . 'ShippingRegistrar.php'; 42 44 43 45 \WCPoczta\Code\Core\Bootstrap::init($pluginPath, plugin_dir_url(__FILE__), '1.3.194');
Note: See TracChangeset
for help on using the changeset viewer.