PluginProbe
Vitepos – Point of Sale (POS) for WooCommerce / trunk
Vitepos – Point of Sale (POS) for WooCommerce vtrunk
3.5.1 3.5.0 3.4.4 3.4.3 3.4.2 3.4.1 trunk 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4
vitepos-lite / vitepos-lite.php

vitepos-lite.php in Vitepos – Point of Sale (POS) for WooCommerce trunk, at vitepos-lite.php

43 lines 970 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Vitepos – Point of Sale (POS) for WooCommerce
4 * Plugin URI: http://appsbd.com
5 * Description: It's a Point of Sale plugin for Woocommerce, so fast and easy.
6 * Version: 3.5.1
7 * Author: appsbd
8 * Author URI: http://www.appsbd.com
9 * Text Domain: vitepos-lite
10 * Domain Path: /languages
11 * Requires at least: 5.9
12 * Requires PHP: 7.2
13 * wc require:3.2.0
14 * License: GPLv2 or later
15 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
16 *
17 * @package Vitepos
18 */
19
20 if ( ! defined( 'ABSPATH' ) ) {
21 exit;
22 }
23
24
25 include_once ABSPATH . 'wp-admin/includes/plugin.php';
26 require_once __DIR__ . '/vendor/autoload.php';
27
28 use VitePos_Lite\Core\VitePosLite;
29
30 if ( true === \VitePos_Lite\Libs\Vitepos_Loader::is_ready_to_load( __FILE__ ) ) {
31 require_once 'vitepos_lite/helper/plugin-helper.php';
32 require_once 'vitepos_lite/core/class-viteposlite.php';
33
34
35
36 $vitepos = new VitePosLite( __FILE__ );
37 $vitepos->start_plugin();
38 }
39
40 /**
41 * SDK Integration
42 */
43