-
Notifications
You must be signed in to change notification settings - Fork 1
/
wp-translations.php
234 lines (212 loc) · 6.6 KB
/
wp-translations.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<?php
/**
* Plugin Name: WP-Translations
* Plugin URI: https://wp-translations.pro
* Description: Import WP language packs from transifex.
* Author: WP-Translations Team
* Author URI: https://wp-translations.pro
* Version: 1.0.0
* Text Domain: wp-translations
* Domain Path: languages
*
* WP-Translations is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* any later version.
*
* WP-Translations 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 Easy Digital Downloads. If not, see <http://www.gnu.org/licenses/>.
*
* @package WP-Translations
* @category Core
* @author Sadler Jerome
* @version 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if ( ! class_exists( 'WP_Translations' ) ) :
/**
* Main WP_Translations Class.
*
* @since 1.0.0
*/
final class WP_Translations {
/**
* The single instance of the class.
*
* @since 1.0.0
*/
protected static $_instance = null;
/**
* Main WP_Translations Instance.
*
* Insures that only one instance of WP_Translations exists in memory at any one
* time. Also prevents needing to define globals all over the place.
*
* @since 1.0.0
* @static
* @return object|WP_Translations The one true WP_Translations
*/
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
/**
* Throw error on object clone.
*
* The whole idea of the singleton design pattern is that there is a single
* object therefore, we don't want the object to be cloned.
*
* @since 1.0.0
* @access protected
* @return void
*/
public function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin\'huh?', 'wp-translations' ), '1.0.0' );
}
/**
* Disable unserializing of the class.
*
* @since 1.0.0
* @access protected
* @return void
*/
public function __wakeup() {
// Unserializing instances of the class is forbidden.
_doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin\'huh?', 'wp-translations' ), '1.0.0' );
}
/**
* WP-Translations Constructor.
*/
public function __construct() {
$this->define_constants();
$this->includes();
$this->init_hooks();
do_action( 'wp_translations_loaded' );
}
/**
* Hook into actions and filters.
* @since 2.3
*/
private function init_hooks() {
register_activation_hook( __FILE__, array( $this, 'activation' ) );
add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
register_deactivation_hook( __FILE__, array( $this, 'deactivation' ) );
}
/**
* Define plugin constants.
*
* @access private
* @since 1.0.0
* @return void
*/
private function define_constants() {
$this->define( 'WP_TRANSLATIONS_PLUGIN_NAME', 'WP-Translations' );
$this->define( 'WP_TRANSLATIONS_VERSION', '1.0.0' );
$this->define( 'WP_TRANSLATIONS_DEBUG', true );
$this->define( 'WP_TRANSLATIONS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
$this->define( 'WP_TRANSLATIONS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
$this->define( 'WP_TRANSLATIONS_PLUGIN_FILE', __FILE__ );
}
/**
* Define constant if not already set.
*
* @param string $name
* @param string|bool $value
*/
private function define( $name, $value ) {
if ( ! defined( $name ) ) {
define( $name, $value );
}
}
/**
* Include required files.
*
* @access private
* @since 1.0.0
* @return void
*/
private function includes() {
global $wp_translations_options;
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/helper-functions.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/translation-actions.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/translation-functions.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/admin/register-settings.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-notices.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translation-list-table.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-setup.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-plugins-lp-update.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-plugins-notification.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-themes-lp-update.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/class-wp-translations-themes-notification.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/admin/enqueue.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/admin/ajax-updates.php';
require_once WP_TRANSLATIONS_PLUGIN_DIR . 'includes/admin/ajax-translations.php';
}
/**
* Loads the plugin language files.
*
* @access public
* @since 1.0.0
* @return void
*/
public function load_textdomain() {
load_plugin_textdomain( 'wp-translations', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
}
/**
* Fire on plugin activation
*
* @access public
* @since 1.0.0
*/
public function activation() {
$defaults = array(
'core_updates' => 1,
'plugins_updates' => 1,
'themes_updates' => 1,
'bubble_count' => 1,
'page_hook' => 'menu',
'auto_update' => 1,
'beta_update' => '',
'beta_percent' => '',
'enable_repo' => 1,
'repo_priority' => '',
'mo_cache' => '',
);
add_site_option( 'wp_translations_settings', $defaults );
}
/**
* Fire on plugin deactivation
*
* @access public
* @since 1.0.0
*/
public function deactivation() {
}
}
endif; // End if class_exists check.
/**
* The main function for that returns WP_Translations
*
* The main function responsible for returning the one true WP_Translations
* Instance to functions everywhere.
*
* Use this function like you would a global variable, except without needing
* to declare the global.
*
* @since 1.0.0
* @return object|WP_Translations The one true WP_Translations Instance.
*/
function wp_translations_run() {
return WP_Translations::instance();
}
wp_translations_run();