turned custer into a repo

This commit is contained in:
asus
2024-07-17 15:18:42 +02:00
parent 544138e6c6
commit b551112094
11 changed files with 2776 additions and 0 deletions

36
custer.php Normal file
View File

@@ -0,0 +1,36 @@
<?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');
?>