This repository was archived by the owner on Dec 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsimple-user-adding.php
More file actions
49 lines (43 loc) · 1.54 KB
/
simple-user-adding.php
File metadata and controls
49 lines (43 loc) · 1.54 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* Plugin Name: Simple User Adding
* Plugin URI: https://github.com/wearerequired/simple-user-adding/
* Description: This plugin makes adding users to your WordPress site easier than ever before.
* Version: 1.1.1
* Author: required+
* Author URI: http://required.ch
* License: GPLv2+
* Text Domain: simple-user-adding
* Domain Path: /languages
*/
/**
* Copyright (c) 2015 required+ (email : support@required.ch)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
defined( 'WPINC' ) or die;
if ( file_exists( dirname( __FILE__ ) . '/vendor/autoload.php' ) ) {
require dirname( __FILE__ ) . '/vendor/autoload.php';
}
$requirements_check = new WP_Requirements_Check( array(
'title' => 'Simple User Adding',
'php' => '5.3',
'wp' => '4.0',
'file' => __FILE__,
) );
if ( $requirements_check->passes() ) {
include( dirname( __FILE__ ) . '/init.php' );
}
unset( $requirements_check );