-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy paththe-seo-framework-extension-manager.php
85 lines (74 loc) · 2.36 KB
/
the-seo-framework-extension-manager.php
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* Plugin Name: The SEO Framework - Extension Manager
* Plugin URI: https://theseoframework.com/extension-manager/
* Description: Add more powerful SEO features to The SEO Framework. Right from your WordPress dashboard.
* Version: 2.7.1
* Author: The SEO Framework Team
* Author URI: https://theseoframework.com/
* License: GPLv3
* Text Domain: the-seo-framework-extension-manager
* Domain Path: /language
* Requires at least: 5.9
* Requires PHP: 7.4.0
*
* @package TSF_Extension_Manager\Bootstrap
*/
defined( 'ABSPATH' ) or die;
/**
* The SEO Framework - Extension Manager plugin
* Copyright (C) 2016 - 2024 Sybre Waaijer, CyberWire B.V. (https://cyberwire.nl/)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 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, see <http://www.gnu.org/licenses/>.
*/
/**
* The plugin version. Always 3 point.
*
* @since 1.0.0
*/
define( 'TSF_EXTENSION_MANAGER_VERSION', '2.7.1' );
/**
* The plugin's database version.
*
* @since 1.5.0
*/
define( 'TSF_EXTENSION_MANAGER_DB_VERSION', '2700' );
/**
* The plugin file, absolute unix path.
*
* @since 1.0.0
*/
define( 'TSF_EXTENSION_MANAGER_PLUGIN_BASE_FILE', __FILE__ );
/**
* The plugin basename relative to the plugins directory.
*
* @since 1.0.0
*/
define( 'TSF_EXTENSION_MANAGER_PLUGIN_BASENAME', plugin_basename( TSF_EXTENSION_MANAGER_PLUGIN_BASE_FILE ) );
/**
* The plugin's bootstrap folder location.
*
* @since 1.5.0
*/
define(
'TSF_EXTENSION_MANAGER_BOOTSTRAP_PATH',
dirname( TSF_EXTENSION_MANAGER_PLUGIN_BASE_FILE ) . DIRECTORY_SEPARATOR . 'bootstrap' . DIRECTORY_SEPARATOR
);
// Define environental constants.
require TSF_EXTENSION_MANAGER_BOOTSTRAP_PATH . 'define.php';
// Load plugin API functions.
require TSF_EXTENSION_MANAGER_DIR_PATH_FUNCTION . 'api.php';
// Load plugin updater.
require \TSF_EXTENSION_MANAGER_BOOTSTRAP_PATH . 'update.php';
// Load plugin.
require TSF_EXTENSION_MANAGER_BOOTSTRAP_PATH . 'load.php';