-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.php
32 lines (26 loc) · 1.14 KB
/
init.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
<?php
/*
Plugin Name: Easy Theme and Plugin Upgrades
Plugin URI: http://wordpress.org/extend/plugins/easy-theme-and-plugin-upgrades/
Description: Upgrade themes and plugins using a zip file without having to remove them first.
Author: Chris Jean
Author URI: https://chrisjean.com/
Version: 2.0.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: easy-theme-and-plugin-upgrades
Easy Theme and Plugin Upgrades is free software you can redistribute
it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 2 of the
License, or any later version.
Easy Theme and Plugin Upgrades is distributed in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Easy Theme and Plugin Upgrades. If not, see
https://www.gnu.org/licenses/gpl-2.0.html.
*/
if ( is_admin() ) {
require( dirname( __FILE__ ) . '/admin.php' );
}