| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Plugin Name: Kali Forms - WordPress Forms Made Easy |
| 5 |
* Plugin URI: https://www.kaliforms.com |
| 6 |
* Description: Kali Forms provides a user-friendly form creation experience for WordPress. |
| 7 |
* Author: Kali Forms |
| 8 |
* Version: 2.4.24 |
| 9 |
* Author URI: https://www.kaliforms.com/ |
| 10 |
* License: GPLv3 or later |
| 11 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html |
| 12 |
* Requires PHP: 5.6 |
| 13 |
* Text Domain: kali-forms |
| 14 |
* Domain Path: /languages |
| 15 |
* |
| 16 |
* Copyright 2019 Kali Forms hello@kaliforms.com |
| 17 |
* |
| 18 |
* This program is free software; you can redistribute it and/or modify |
| 19 |
* it under the terms of the GNU General Public License, version 3, as |
| 20 |
* published by the Free Software Foundation. |
| 21 |
* |
| 22 |
* This program is distributed in the hope that it will be useful, |
| 23 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 |
* GNU General Public License for more details. |
| 26 |
* |
| 27 |
* You should have received a copy of the GNU General Public License |
| 28 |
* along with this program; if not, write to the Free software |
| 29 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 30 |
*/ |
| 31 |
|
| 32 |
namespace KaliForms; |
| 33 |
|
| 34 |
use KaliForms\Inc\KaliForms; |
| 35 |
|
| 36 |
if ( ! defined( 'ABSPATH' ) ) { |
| 37 |
exit; |
| 38 |
} |
| 39 |
|
| 40 |
define( 'KALIFORMS_PLUGIN_FILE', __FILE__ ); |
| 41 |
require_once 'bootstrap.php'; |
| 42 |
|
| 43 |
if ( ! class_exists( 'KaliForms\Inc\KaliForms' ) ) { |
| 44 |
return; |
| 45 |
} |
| 46 |
KaliForms::get_instance(); |
| 47 |
|