26 lines
592 B
PHP
26 lines
592 B
PHP
<?php
|
|
/*
|
|
Plugin Name: In Contact test
|
|
Plugin URI: https://krzysztof-turek.com
|
|
Description: Simple Contact Form
|
|
Version: 1.0.1
|
|
Author: Krzysztof Turek
|
|
Author URI: https://krzysztof-turek.com
|
|
License: GPL2
|
|
License URI: https://krzysztof-turek.com
|
|
*/
|
|
|
|
|
|
use inContact\Init;
|
|
|
|
$pluginDirUrl = plugin_dir_url( __FILE__ );
|
|
$pluginPath = plugin_dir_path( __FILE__ );
|
|
|
|
if (file_exists(dirname(__FILE__) . "/inc/autoload.php")) {
|
|
require_once dirname(__FILE__) . "/inc/autoload.php";
|
|
}
|
|
|
|
if (class_exists("inContact\Init")) {
|
|
|
|
Init::getInstance();
|
|
} |