-
Notifications
You must be signed in to change notification settings - Fork 0
/
ceylon-conferences.php
executable file
·39 lines (25 loc) · 1.19 KB
/
ceylon-conferences.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
29
30
31
32
33
34
35
36
<?php
/**
* Plugin Name: WP Conferences Manager
* Version: 1.0
* Plugin URI: https://www.ceylon.solutions/conferences-manager
* Description: Conferences Managements Module
* Author: ceylondevs
* Text Domain:
* License: GPL v3
*/
define( 'CEYLON_CONF_TEXT_DOMAIN', 'ceylon-conf' );
define( 'CEYLON_CONF_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'CEYLON_CONF_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CEYLON_CONF_VERSION', '1.0' );
const SPEAKER_POST_TYPE = 'ccm_speakers';
const CONFERENCE_POST_TYPE = 'ccm_conferences';
const SESSION_POST_TYPE = 'ccm_sessions';
require_once CEYLON_CONF_PLUGIN_PATH . '/vendor/autoload.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/bootstrap.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/testimonials/testimonials.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/speakers/speakers.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/sessions/sessions.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/conferences/conferences.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/helpers/helpers.php';
require_once CEYLON_CONF_PLUGIN_PATH . '/includes/shortcode/shortcodes.php';