-
Notifications
You must be signed in to change notification settings - Fork 0
/
frais-pro.php
28 lines (24 loc) · 936 Bytes
/
frais-pro.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* Plugin Name: Frais.pro
* Plugin URI: http://www.eoxia.com/
* Description: Manage your professional fees from your WordPress website and never search for what you spent.
* Version: 1.5.0
* Author: Eoxia
* Author URI: https://www.eoxia.com
* License: GPL2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Domain Path: /core/assets/languages
* Text Domain: frais-pro
*
* @package Note De Frais
*/
namespace frais_pro;
DEFINE( 'PLUGIN_NOTE_DE_FRAIS_PATH', realpath( plugin_dir_path( __FILE__ ) ) . '/' );
DEFINE( 'PLUGIN_NOTE_DE_FRAIS_URL', plugins_url( basename( __DIR__ ) ) . '/' );
DEFINE( 'PLUGIN_NOTE_DE_FRAIS_DIR', basename( __DIR__ ) );
DEFINE( 'PLUGIN_NOTE_DE_FRAIS_DEV_MODE', false );
if ( ! PLUGIN_NOTE_DE_FRAIS_DEV_MODE ) {
require_once 'core/external/eo-framework/eo-framework.php';
}
\eoxia\Init_Util::g()->exec( PLUGIN_NOTE_DE_FRAIS_PATH, basename( __FILE__, '.php' ) );