-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathklantinteractie.php
38 lines (33 loc) · 1.26 KB
/
klantinteractie.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all the dependencies used by the plugin and starts the plugin.
*
* @link https://www.openwebconcept.nl
* @since 1.0.0
* @package Klantinteractie_Plugin
*
* @wordpress-plugin
* Plugin Name: Klantinteractie
* Plugin URI: https://www.openwebconcept.nl
* Description: This plugin adds support for a Gravity Forms form to submit data to the klantinteractie API.
* Version: 1.0.0
* Author: Acato
* Author URI: https://www.acato.nl
* Text Domain: klantinteractie
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'KLANTINTERACTIE_VERSION', '1.0.0' );
require_once plugin_dir_path( __FILE__ ) . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'class-autoloader.php';
spl_autoload_register( array( '\Klantinteractie_Plugin\Autoloader', 'autoload' ) );
require_once plugin_dir_path( __FILE__ ) . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'functions.php';
/**
* Begins execution of the plugin.
*/
new \Klantinteractie_Plugin\Plugin();