PluginProbe
Kali Forms — Contact Form & Drag-and-Drop Builder / 2.4.24
Kali Forms — Contact Form & Drag-and-Drop Builder v2.4.24
2.4.24 2.4.23 2.4.22 2.4.21 2.4.20 2.4.19 2.4.18 2.4.17 2.4.15 2.4.16 2.4.14 2.3.52 2.3.53 2.4.0 2.4.1 2.4.10 2.4.11 2.4.13 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 All 29 releases
kali-forms / kali-forms.php

kali-forms.php in Kali Forms — Contact Form & Drag-and-Drop Builder 2.4.24, at kali-forms.php

47 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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