26 lines
815 B
PHP
Executable File
26 lines
815 B
PHP
Executable File
<?php
|
|
/**
|
|
* Plugin Name: KGV Termine
|
|
* Plugin URI: https://apex-project.de/
|
|
* Description: Eigene Terminverwaltung mit separatem Admin-Interface, Frontend-Liste und Detailansicht per Shortcode.
|
|
* Update URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Termine.git
|
|
* Gitea Plugin URI: https://git.apex-project.de/Wordpress_Plugins/KGV-Termine.git
|
|
* Version: 1.0.4
|
|
* Author: Ronny Grobel
|
|
* Author URI: https://apex-project.de/
|
|
* Text Domain: kgv-termine-admin
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
define('KGV_TERMINE_FILE', __FILE__);
|
|
define('KGV_TERMINE_PATH', plugin_dir_path(__FILE__));
|
|
define('KGV_TERMINE_URL', plugin_dir_url(__FILE__));
|
|
define('KGV_TERMINE_TABLE', 'kgv_termine');
|
|
|
|
require_once KGV_TERMINE_PATH . 'includes/class-kgv-termine-plugin.php';
|
|
|
|
KGV_Termine_Plugin::instance();
|