forked from palasthotel/grid-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress_plugin.php
More file actions
26 lines (22 loc) · 849 Bytes
/
wordpress_plugin.php
File metadata and controls
26 lines (22 loc) · 849 Bytes
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
<?php
/**
* Plugin Name: Grid - DEV
* Description: Dev inc file
* Version: X.X.X
* Requires at least: X.X
* Tested up to: X.X.X
* Author: Palasthotel <rezeption@palasthotel.de> (in person: Benjamin Birkenhake, Edward Bock, Enno Welbers, Jana Marie Eggebrecht, Stephan Kroppenstedt)
* Author URI: http://www.palasthotel.de
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: grid
* Domain Path: /plugin/languages
*/
use Palasthotel\Grid\WordPress\Plugin;
include dirname(__FILE__) . "/public/wordpress_plugin.php";
register_activation_hook(__FILE__, function($multisite){
Plugin::instance()->onActivation($multisite);
});
register_deactivation_hook(__FILE__, function($multisite){
Plugin::instance()->onDeactivation($multisite);
});