This repository has been archived by the owner on May 15, 2021. It is now read-only.
forked from gambitph/Titan-Framework
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
titan-framework.php
208 lines (186 loc) · 6.82 KB
/
titan-framework.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
/**
* Main plugin file
*
* @package Titan Framework
*
* @see lib/class-titan-framework.php
*/
/**
Plugin Name: Titan Framework
Plugin URI: http://www.titanframework.net/
Description: Titan Framework allows theme and plugin developers to create a admin pages, options, meta boxes, and theme customizer options with just a few simple lines of code.
Author: Benjamin Intal, Gambit
Version: 1.12.1
Author URI: http://gambit.ph
*/
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly.
}
// Used for tracking the version used.
defined( 'TF_VERSION' ) or define( 'TF_VERSION', '1.12.1' );
// Used for text domains.
defined( 'TF_I18NDOMAIN' ) or define( 'TF_I18NDOMAIN', 'titan-framework' );
// Used for general naming, e.g. nonces.
defined( 'TF' ) or define( 'TF', 'titan-framework' );
// Used for general naming.
defined( 'TF_NAME' ) or define( 'TF_NAME', 'Titan Framework' );
// Used for file includes.
defined( 'TF_PATH' ) or define( 'TF_PATH', trailingslashit( dirname( __FILE__ ) ) );
// Used for testing and checking plugin slug name.
defined( 'TF_PLUGIN_BASENAME' ) or define( 'TF_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
require_once( TF_PATH . 'lib/class-admin-notification.php' );
require_once( TF_PATH . 'lib/class-admin-page.php' );
require_once( TF_PATH . 'lib/class-admin-tab.php' );
require_once( TF_PATH . 'lib/class-customizer.php' );
require_once( TF_PATH . 'lib/class-meta-box.php' );
require_once( TF_PATH . 'lib/class-option.php' );
require_once( TF_PATH . 'lib/class-option-ajax-button.php' );
require_once( TF_PATH . 'lib/class-option-checkbox.php' );
require_once( TF_PATH . 'lib/class-option-code.php' );
require_once( TF_PATH . 'lib/class-option-color.php' );
require_once( TF_PATH . 'lib/class-option-custom.php' );
require_once( TF_PATH . 'lib/class-option-edd-license.php' );
require_once( TF_PATH . 'lib/class-option-date.php' );
require_once( TF_PATH . 'lib/class-option-enable.php' );
require_once( TF_PATH . 'lib/class-option-editor.php' );
require_once( TF_PATH . 'lib/class-option-font.php' );
require_once( TF_PATH . 'lib/class-option-gallery.php' );
require_once( TF_PATH . 'lib/class-option-group.php' );
require_once( TF_PATH . 'lib/class-option-heading.php' );
require_once( TF_PATH . 'lib/class-option-iframe.php' );
require_once( TF_PATH . 'lib/class-option-multicheck.php' );
require_once( TF_PATH . 'lib/class-option-multicheck-categories.php' );
require_once( TF_PATH . 'lib/class-option-multicheck-pages.php' );
require_once( TF_PATH . 'lib/class-option-multicheck-posts.php' );
require_once( TF_PATH . 'lib/class-option-multicheck-post-types.php' );
require_once( TF_PATH . 'lib/class-option-note.php' );
require_once( TF_PATH . 'lib/class-option-number.php' );
require_once( TF_PATH . 'lib/class-option-radio.php' );
require_once( TF_PATH . 'lib/class-option-radio-image.php' );
require_once( TF_PATH . 'lib/class-option-radio-palette.php' );
require_once( TF_PATH . 'lib/class-option-save.php' );
require_once( TF_PATH . 'lib/class-option-select.php' );
require_once( TF_PATH . 'lib/class-option-select-categories.php' );
require_once( TF_PATH . 'lib/class-option-select-pages.php' );
require_once( TF_PATH . 'lib/class-option-select-posts.php' );
require_once( TF_PATH . 'lib/class-option-select-post-types.php' );
require_once( TF_PATH . 'lib/class-option-separator.php' );
require_once( TF_PATH . 'lib/class-option-sortable.php' );
require_once( TF_PATH . 'lib/class-option-text.php' );
require_once( TF_PATH . 'lib/class-option-textarea.php' );
require_once( TF_PATH . 'lib/class-option-upload.php' );
require_once( TF_PATH . 'lib/class-option-file.php' );
require_once( TF_PATH . 'lib/class-titan-css.php' );
require_once( TF_PATH . 'lib/class-titan-framework.php' );
require_once( TF_PATH . 'lib/class-wp-customize-control.php' );
require_once( TF_PATH . 'lib/functions-googlefonts.php' );
require_once( TF_PATH . 'lib/functions-utils.php' );
/**
* Titan Framework Plugin Class
*
* @since 1.0
*/
class TitanFrameworkPlugin {
/**
* Constructor, add hooks
*
* @since 1.0
*/
function __construct() {
add_action( 'plugins_loaded', array( $this, 'load_text_domain' ) );
add_action( 'plugins_loaded', array( $this, 'force_load_first' ), 10, 1 );
add_filter( 'plugin_row_meta', array( $this, 'plugin_links' ), 10, 2 );
// Create the options.
add_action( 'init', array( $this, 'trigger_option_creation' ), 1 );
}
/**
* Trigger the creation of the options
*
* @since 1.9
* @access public
*
* @return void
*/
public function trigger_option_creation() {
/**
* Triggers the creation of options. Hook into this action and use the various create methods.
*
* @since 1.0
*/
do_action( 'tf_create_options' );
/**
* Fires immediately after options are created.
*
* @since 1.8
*/
do_action( 'tf_done' );
}
/**
* Load plugin translations
*
* @since 1.0
* @access public
*
* @return void
*/
public function load_text_domain() {
load_plugin_textdomain( TF_I18NDOMAIN, false, basename( dirname( __FILE__ ) ) . '/languages/' );
}
/**
* Forces our plugin to be loaded first. This is to ensure that plugins that use the framework have access to
* this class from almost anywhere
*
* @since 1.0
* @access public
*
* @param array $plugins List of plugins loaded.
*
* @return array Modified list of plugins.
*
* @see initially based on http://snippets.khromov.se/modify-wordpress-plugin-load-order/
*/
public function force_load_first( $plugins = null ) {
$plugins = null === $plugins ? (array) get_option( 'active_plugins' ) : $plugins;
if ( ! empty( $plugins ) ) {
$index = array_search( TF_PLUGIN_BASENAME, $plugins );
if ( false !== $index && 0 !== $index ) {
array_splice( $plugins, $index, 1 );
array_unshift( $plugins, TF_PLUGIN_BASENAME );
if (is_multisite()){
update_site_option( 'active_plugins', $plugins );
} else {
update_option( 'active_plugins', $plugins );
}
}
}
return $plugins;
}
/**
* Adds links to the docs and GitHub
*
* @since 1.1.1
* @access public
*
* @param array $plugin_meta The current array of links.
* @param string $plugin_file The plugin file.
* @return array The current array of links together with our additions
**/
public function plugin_links( $plugin_meta, $plugin_file ) {
if ( TF_PLUGIN_BASENAME === $plugin_file ) {
$plugin_meta[] = sprintf( "<a href='%s' target='_blank'>%s</a>",
'http://www.titanframework.net/docs',
__( 'Documentation', TF_I18NDOMAIN )
);
$plugin_meta[] = sprintf( "<a href='%s' target='_blank'>%s</a>",
'https://github.com/gambitph/Titan-Framework',
__( 'GitHub Repo', TF_I18NDOMAIN )
);
$plugin_meta[] = sprintf( "<a href='%s' target='_blank'>%s</a>",
'https://github.com/gambitph/Titan-Framework/issues',
__( 'Issue Tracker', TF_I18NDOMAIN )
);
}
return $plugin_meta;
}
}
new TitanFrameworkPlugin();