-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserbian-addons-for-woocommerce.php
More file actions
42 lines (38 loc) · 1.61 KB
/
serbian-addons-for-woocommerce.php
File metadata and controls
42 lines (38 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Plugin Name: Serbian Addons for WooCommerce
* Plugin URI: https://oblak.studio/open-source/srpski-woocommerce
* Description: Various addons and tweaks that make WooCommerce compatible with Serbian bureaucracy.
* Version: 0.0.0
* Requires PHP: 8.0
* Author: Oblak Studio
* Author URI: https://oblak.studio
* Tested up to: 6.6
* WC requires at least: 8.5
* WC tested up to: 9.3
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: serbian-addons-for-woocommerce
* Domain Path: /languages
* Requires Plugins: woocommerce
*
* @package Serbian Addons for WooCommerce
*/
defined( 'ABSPATH' ) || exit;
// phpcs:disable WordPress.WhiteSpace.OperatorSpacing.SpacingBefore
defined( 'WCRS_PLUGIN_FILE' ) || define( 'WCRS_PLUGIN_FILE', __FILE__ );
defined( 'WCRS_ABSPATH' ) || define( 'WCRS_ABSPATH', dirname( WCRS_PLUGIN_FILE ) . '/' );
defined( 'WCRS_PLUGIN_BASE' ) || define( 'WCRS_PLUGIN_BASE', plugin_basename( WCRS_PLUGIN_FILE ) );
defined( 'WCRS_PLUGIN_PATH' ) || define( 'WCRS_PLUGIN_PATH', plugin_dir_path( WCRS_PLUGIN_FILE ) );
defined( 'WCRS_VERSION' ) || define( 'WCRS_VERSION', '0.0.0' );
// phpcs:enable WordPress.WhiteSpace.OperatorSpacing.SpacingBefore
require __DIR__ . '/vendor/autoload_packages.php';
xwp_load_app(
app: array(
'compile' => false,
'compile_dir' => __DIR__ . '/cache',
'id' => 'wcsrb',
'module' => \Oblak\WCSRB\App::class,
),
priority: -2,
);