-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauto-letsencrypt.php
More file actions
35 lines (32 loc) · 821 Bytes
/
auto-letsencrypt.php
File metadata and controls
35 lines (32 loc) · 821 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
32
33
34
35
<?php
/**
* Plugin Name: Auto Letsencrypt
* Plugin URI: https://gagan0123.com/auto-letsencrypt
* Description: Automatically add new domains to SSL Certificate
* Version: 1.0.1
* Author: Gagan Deep Singh
* Author URI: https://gagan0123.com
* License: GPLv2
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: auto-letsencrypt
* Domain Path: /languages
* Network: True
*
* @package Auto_Letsencrypt
*/
// If this file is called directly, abort.
if ( ! defined( 'ABSPATH' ) ) {
die;
}
if ( ! defined( 'GS_AL_PATH' ) ) {
/**
* Path to the plugin folder.
*
* @since 0.0.1
*/
define( 'GS_AL_PATH', trailingslashit( plugin_dir_path( __FILE__ ) ) );
}
/**
* The core plugin class.
*/
require_once GS_AL_PATH . 'includes/class-auto-letsencrypt.php';