| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Hippoo Mobile app for WooCommerce |
| 4 |
* Version: 1.11.0 |
| 5 |
* Plugin URI: https://Hippoo.app/ |
| 6 |
* Description: Best WooCommerce App Alternative – Manage orders and products on the go with real-time notifications, seamless order and product management, and powerful add-ons. Available for Android & iOS. 🚀. |
| 7 |
* Short Description: Best WooCommerce App Alternative – Manage orders and products on the go with real-time notifications, seamless order and product management, and powerful add-ons. Available for Android & iOS. 🚀. |
| 8 |
* Author: Hippoo Team |
| 9 |
* Author URI: https://Hippoo.app/ |
| 10 |
* Text Domain: hippoo |
| 11 |
* Domain Path: /languages |
| 12 |
* License: GPL3 |
| 13 |
* |
| 14 |
* Hippoo! is free software: you can redistribute it and/or modify |
| 15 |
* it under the terms of the GNU General Public License as published by |
| 16 |
* the Free Software Foundation, either version 2 of the License, or |
| 17 |
* any later version. |
| 18 |
* |
| 19 |
* Hippoo! is distributed in the hope that it will be useful, |
| 20 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 |
* GNU General Public License for more details. |
| 23 |
* |
| 24 |
* You should have received a copy of the GNU General Public License |
| 25 |
* along with Hippoo!. |
| 26 |
**/ |
| 27 |
|
| 28 |
if ( ! defined( 'ABSPATH' ) ) { |
| 29 |
exit; |
| 30 |
} |
| 31 |
|
| 32 |
define('HIPPOO_VERSION', '1.11.0'); |
| 33 |
define('HIPPOO_MAIN_FILE_PATH', __FILE__); |
| 34 |
define('HIPPOO_PATH', plugin_dir_path(__FILE__)); |
| 35 |
define('HIPPOO_URL', plugin_dir_url(__FILE__) . 'assets/'); |
| 36 |
define('HIPPOO_PROXY_NOTIFICTION_URL', 'https://hippoo.app/wp-json/woohouse/v1/fb/proxy_notification'); |
| 37 |
|
| 38 |
# This is used by hippoo_pif_get_url_attachment |
| 39 |
require_once ABSPATH . 'wp-admin/includes/image.php'; |
| 40 |
|
| 41 |
require_once HIPPOO_PATH . 'vendor/autoload.php'; |
| 42 |
include_once HIPPOO_PATH . 'app/utils.php'; |
| 43 |
include_once HIPPOO_PATH . 'app/web_api.php'; |
| 44 |
include_once HIPPOO_PATH . 'app/ability_catalog.php'; |
| 45 |
include_once HIPPOO_PATH . 'app/ability.php'; |
| 46 |
include_once HIPPOO_PATH . 'app/settings.php'; |
| 47 |
include_once HIPPOO_PATH . 'app/pwa.php'; |
| 48 |
include_once HIPPOO_PATH . 'app/ai.php'; |
| 49 |
include_once HIPPOO_PATH . 'app/bi.php'; |
| 50 |
include_once HIPPOO_PATH . 'app/permissions.php'; |
| 51 |
include_once HIPPOO_PATH . 'app/integrations.php'; |
| 52 |
include_once HIPPOO_PATH . 'app/compatibility.php'; |
| 53 |
include_once HIPPOO_PATH . 'app/app.php'; |