-
Notifications
You must be signed in to change notification settings - Fork 0
/
makerspace-calendar.php
37 lines (30 loc) · 1.06 KB
/
makerspace-calendar.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
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @package makerspace_calendar
*
* @wordpress-plugin
* Plugin Name: Maker Space Calendar
* Version: 1.0.0
* Author: Jonathan Günz
* Author URI: https://hmnd.de
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: makerspace-calendar
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
// the main plugin class
require_once dirname( __FILE__ ) . '/src/main.php';
Makerspace_Calendar_Main::instance();
register_activation_hook( __FILE__, array('Makerspace_Calendar_Main', 'activate' ) );
register_deactivation_hook( __FILE__, array('Makerspace_Calendar_Main', 'deactivate' ) );