initial commit

This commit is contained in:
2025-03-12 21:49:22 +01:00
parent bbcf6764cd
commit 3e9115811a
18 changed files with 1617 additions and 0 deletions

26
in-contact.php Normal file
View File

@@ -0,0 +1,26 @@
<?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();
}