| 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.4.4 |
| 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 |
|