forked from fatromakasina-spec/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.php
More file actions
21 lines (21 loc) · 678 Bytes
/
Copy pathplugin.php
File metadata and controls
21 lines (21 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/*
* Plugin Name: GrootMade
* Plugin URI: https://grootmade.com
* Description: Your all-in-one dashboard for discovering, installing, and managing premium themes, plugins, and template kits.
* Version: 5.0.0-beta.2.4.3.4
* Requires at Least: 6.0
* Requires PHP: 7.4
* Author: Grootmade
* Author URI: https://github.com/GrootMade/connect
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: grootmade
**/
namespace Grootmade {
if (file_exists(__DIR__ . '/includes/lib/autoload.php')) {
require_once __DIR__ . '/includes/lib/autoload.php';
Plugin::get_instance(__FILE__);
Upgrade::get_instance(__FILE__);
}
}