-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmjm-clinic.php
37 lines (33 loc) · 1.2 KB
/
mjm-clinic.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
37
<?php
/**
* @package MJM_Clinic
* @author Matt Manning
* @license GPLv3
* @link https://mjman.net
* @copyright 2014 - 2023 Matt Manning
*
* @wordpress-plugin
* Plugin Name: Clinic Services
* Plugin URI: http://mjman.net.com/
* Description: A plugin to promote health clinic services.
* Version: 1.1.23
* Author: Matt Manning
* Author URI: http://mjman.net
* License: GPL3
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: mjm-clinic
* Domain Path: /lang
*/
// If this file is called directly, abort.
if ( !defined( 'WPINC' ) ) {
die;
}
define( 'CLINIC_SERVICES_FUNC', plugin_dir_path( __FILE__ ) . 'inc/func.php' );
define( 'CLINIC_SERVICES_WIDGETS', plugin_dir_path( __FILE__ ) . 'inc/widgets.php' );
$is_clinic_service_shortcode = false;
require_once( plugin_dir_path( __FILE__ ) . 'class-mjm-clinic.php' );
require_once( plugin_dir_path( __FILE__ ) . 'class-misc.php' );
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
register_activation_hook( __FILE__, array( 'MJM_Clinic', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'MJM_Clinic', 'deactivate' ) );
MJM_Clinic::get_instance();