| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
require_once 'autoloader.php'; |
| 6 |
|
| 7 |
/** |
| 8 |
* |
| 9 |
* Plugin defines |
| 10 |
* |
| 11 |
*/ |
| 12 |
define('KALIFORMS_BASE', plugin_dir_path(__FILE__)); |
| 13 |
define('KALIFORMS_URL', plugin_dir_url(__FILE__) . 'public/'); |
| 14 |
define('KALIFORMS_SITE', rtrim(ABSPATH, '\\/')); |
| 15 |
define('KALIFORMS_BASE_API', 'https://www.kaliforms.com/wp-json/wp/v2/'); |
| 16 |
define('KALIFORMS_EXTENSIONS_API', 'https://kaliforms.com/wp-json/kf/v1/plugins'); |
| 17 |
define('KALIFORMS_UNINSTALL_FEEDBACK_API', 'https://kaliforms.com/wp-json/kf/v1/uninstall-feedback'); |
| 18 |
define('KALIFORMS_VERSION', '2.4.2'); |
| 19 |
|