Files
2024_WORDPRESS_PLUGIN_xtxpatch/xtxpatch.php
2024-07-17 15:35:44 +02:00

30 lines
544 B
PHP

<?php
/*
Plugin Name: hggg_xtxpatch
Plugin URI:
Description: some patchs for the xootix login/registration plugin
Author: hugogogo
Version: 0.1.2.1
Author URI:
*/
/*
* it means someone outside wp is accessing the file, in this case kill it.
*/
if (!defined('ABSPATH')) {
die('You can not access this file!');
}
include_once(plugin_dir_path(__FILE__) . '/php/classes/plgntls_class.php');
include_once(Plgntls_xtx::root_path() . 'php/classes/xtxpatch_class.php');
include_once(Plgntls_xtx::root_path() . 'php/menu/admin_menu.php');
?>