-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.php
More file actions
31 lines (28 loc) · 843 Bytes
/
plugin.php
File metadata and controls
31 lines (28 loc) · 843 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
27
28
29
30
31
<?php
/**
* Plugin.
*
* @since 160212 PSR compliance.
*
* @copyright WebSharks, Inc. <http://websharks-inc.com>
* @license GNU General Public License, version 3
*/
/*
Version: 161213
Text Domain: comment-mail
Plugin Name: Comment Mail
Author: WebSharks, Inc.
Author URI: http://www.websharks-inc.com
Plugin URI: http://comment-mail.com/
Description: A WordPress plugin enabling email subscriptions for comments.
Enables email subscriptions for comments in WordPress.
*/
if (!defined('WPINC')) { // MUST have WordPress.
exit('Do NOT access this file directly: '.basename(__FILE__));
}
$GLOBALS['wp_php_rv'] = '5.4'; //php-required-version//
if (require(__DIR__.'/src/vendor/websharks/wp-php-rv/src/includes/check.php')) {
require_once __DIR__.'/src/includes/plugin.php';
} else {
wp_php_rv_notice('Comment Mail');
}