Files
2024_WORDPRESS_PLUGIN_custer/custer.php
2024-07-17 15:18:42 +02:00

37 lines
993 B
PHP

<?php
/*
Plugin Name: hggg_custer
Plugin URI:
Description: customize user : output infos on page, on email, and change current user id momentarly
Author: hugogogo
Version: 0.2.6
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__) . '/plgntls_class.php');
include_once(Plgntls_custer::root_path() . 'custer_class.php');
include_once(Plgntls_custer::root_path() . 'get_user_id.php');
include_once(Plgntls_custer::root_path() . 'change_id.php');
include_once(Plgntls_custer::root_path() . 'format_user_infos.php');
include_once(Plgntls_custer::root_path() . 'user_infos.php');
include_once(Plgntls_custer::root_path() . 'filter_mail.php');
include_once(Plgntls_custer::root_path() . 'queries.php');
include_once(Plgntls_custer::root_path() . 'admin_menu.php');
//include_once(Plgntls_custer::root_path() . 'admin_menu_toggle.php');
?>