-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweakmaster.php
More file actions
34 lines (29 loc) · 967 Bytes
/
tweakmaster.php
File metadata and controls
34 lines (29 loc) · 967 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
<?php
/**
* @package Nextgenthemes\TweakMaster
* @link https://nexgenthemes.com
* @copyright 2025 Nicolas Jonas
* @license GPL-3.0
*
* @wordpress-plugin
* Plugin Name: TweakMaster
* Description: A collection or performance, privacy, security and other tweaks.. Minimalistic lightweight plugin.
* Plugin URI: https://nextgenthemes.com/plugins/tweakmaster/
* Version: 1.1.1
* Requires at least: 6.6
* Author: Nicolas Jonas
* Author URI: https://nextgenthemes.com
* License: GPLv3
*/
declare(strict_types = 1);
namespace Nextgenthemes\TweakMaster;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
const VERSION = '1.1.1';
const PLUGIN_FILE = __FILE__;
const PLUGIN_DIR = __DIR__;
const TWEAKS_DIR = __DIR__ . '/php/tweaks';
const TWEAKS_DIR_SA = __DIR__ . '/php/tweaks-standalone';
require_once __DIR__ . '/vendor/autoload_packages.php';
require_once __DIR__ . '/php/init.php';