66 lines
1.9 KiB
PHP
66 lines
1.9 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: hggg_cipf
|
|
Plugin URI:
|
|
Description:
|
|
Author: hugogogo
|
|
Version: 0.5.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__) . '/plgntls_class.php');
|
|
|
|
|
|
|
|
/*
|
|
* general inclusions
|
|
// utils :
|
|
*/
|
|
include_once(Plgntls::root_path() . 'php/utils/globals.php');
|
|
include_once(Plgntls::root_path() . 'php/utils/console_log.php');
|
|
|
|
include_once(Plgntls::root_path() . 'php/admin_menu/admin_menu.php');
|
|
include_once(Plgntls::root_path() . 'php/admin_menu/admin_menu_toggle.php');
|
|
include_once(Plgntls::root_path() . 'php/admin_menu/menu_content.php');
|
|
include_once(Plgntls::root_path() . 'php/admin_menu/post_paypal.php');
|
|
include_once(Plgntls::root_path() . 'php/admin_menu/post_payment_messages.php');
|
|
|
|
// paypal
|
|
include_once(Plgntls::root_path() . 'php/paypal/paypal.php');
|
|
// profs
|
|
include_once(Plgntls::root_path() . 'php/profs_profil.php');
|
|
include_once(Plgntls::root_path() . 'php/profs_form_commande.php');
|
|
include_once(Plgntls::root_path() . 'php/profs_dates.php');
|
|
include_once(Plgntls::root_path() . 'php/profs_handle_states.php');
|
|
// partners
|
|
include_once(Plgntls::root_path() . 'php/partners_register.php');
|
|
include_once(Plgntls::root_path() . 'php/partners_page.php');
|
|
include_once(Plgntls::root_path() . 'php/partners_form.php');
|
|
// utils
|
|
//include_once(Plgntls::root_path() . '/php/menus.php');
|
|
include_once(Plgntls::root_path() . 'php/states.php');
|
|
include_once(Plgntls::root_path() . 'php/redirections.php');
|
|
include_once(Plgntls::root_path() . 'php/display_css.php');
|
|
include_once(Plgntls::root_path() . 'php/payments.php');
|
|
include_once(Plgntls::root_path() . 'php/random_posts.php');
|
|
include_once(Plgntls::root_path() . 'php/scheduled_events.php');
|
|
// admin
|
|
include_once(Plgntls::root_path() . 'php/admin_hide_bar.php');
|
|
include_once(Plgntls::root_path() . 'php/admin_user_profil.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|