PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.2.7
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.2.7
3.7.5 3.7.4 3.7.3 3.7.2 1-final 3.7.1 3.7.0 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 All 111 releases
← All changes | includes/Plugin.php +1 -113 3.6.23.2.7 View file →
@@ -11,10 +11,8 @@
11 11 namespace Templately;
12 12
13 13 use Templately\Admin\API\Settings as APISettings;
14 14 use Templately\Admin\Settings;
15 -use Templately\API\AIContent;
16 -use Templately\API\LogoGeneration;
17 15 use Templately\API\Conditions;
18 16 use Templately\API\ThemeBuilderApi;
19 17 use Templately\Builder\ThemeBuilder;
20 18 use Templately\Core\Importer\FullSiteImport;
@@ -35,10 +33,8 @@
35 33 use Templately\API\Categories;
36 34 use Templately\API\Dependencies;
37 35 use Templately\API\TemplateTypes;
38 36 use Templately\API\SavedTemplates;
39 -use Templately\API\Sites;
40 -use Templately\API\Tour;
41 37 use Templately\Core\Maintenance;
42 38 use Templately\Core\Migrator;
43 39 use Templately\Core\Platform\Gutenberg;
44 40 use Templately\Core\Platform\Elementor;
@@ -43,9 +39,9 @@
43 39 use Templately\Core\Platform\Gutenberg;
44 40 use Templately\Core\Platform\Elementor;
45 41
46 42 final class Plugin extends Base {
47 - public $version = '3.6.2';
43 + public $version = '3.2.7';
48 44
49 45 public $admin;
50 46 public $settings;
51 47 /**
@@ -59,13 +55,8 @@
59 55 */
60 56 public $theme_builder;
61 57
62 58 /**
63 - * @var Developer
64 - */
65 - public $developer;
66 -
67 - /**
68 59 * Plugin constructor.
69 60 * Initializing Templately plugin.
70 61 *
71 62 * @access private
@@ -80,16 +71,10 @@
80 71 $this->admin = Admin::get_instance();
81 72 $this->settings = Settings::get_instance();
82 73 $this->theme_builder = ThemeBuilder::get_instance();
83 74
84 - // Initialize developer functionality if available
85 - $this->init_developer_functionality();
86 -
87 75 add_action( 'plugins_loaded', [ $this, 'plugins_loaded' ] );
88 76 add_action( 'rest_api_init', [ $this, 'register_routes' ] );
89 -
90 - add_action( 'init', [ $this, 'google_login_handler' ] );
91 -
92 77 /**
93 78 * Initialize.
94 79 */
95 80 do_action( 'templately_init' );
@@ -133,38 +118,8 @@
133 118 FullSiteImport::get_instance();
134 119 }
135 120
136 121 /**
137 - * Initialize developer functionality if available
138 - *
139 - * This method safely loads developer functionality only if the developer
140 - * directory and class exist, preventing fatal errors in production builds.
141 - *
142 - * @return void
143 - */
144 - private function init_developer_functionality() {
145 - $developer_file = TEMPLATELY_PATH . 'includes/Core/Developer/Developer.php';
146 -
147 - // Check if developer file exists before attempting to load
148 - if ( file_exists( $developer_file ) ) {
149 - // Include the developer class file
150 - require_once $developer_file;
151 -
152 - // Check if the class exists after including the file
153 - if ( class_exists( '\\Templately\\Core\\Developer\\Developer' ) ) {
154 - $this->developer = \Templately\Core\Developer\Developer::get_instance();
155 - }
156 - }
157 -
158 - // If developer functionality is not available, set to null
159 - if ( ! isset( $this->developer ) ) {
160 - $this->developer = null;
161 - }
162 - }
163 -
164 -
165 -
166 - /**
167 122 * Initialize all platforms
168 123 * @return void
169 124 */
170 125 public function platforms() {
@@ -184,10 +139,8 @@
184 139 Dependencies::get_instance();
185 140 Tags::get_instance();
186 141 ThemeBuilderApi::get_instance();
187 142
188 - AIContent::get_instance();
189 - LogoGeneration::get_instance();
190 143 Items::get_instance();
191 144 SavedTemplates::get_instance();
192 145
193 146 Login::get_instance();
@@ -195,13 +148,10 @@
195 148 Import::get_instance();
196 149 Profile::get_instance();
197 150 MyClouds::get_instance();
198 151 WorkSpaces::get_instance();
199 - Sites::get_instance();
200 - Tour::get_instance();
201 152
202 153 APISettings::get_instance();
203 - // Note: DeveloperSettings::get_instance() is called in Developer::init_modules() when developer functionality is available and enabled
204 154 }
205 155
206 156 /**
207 157 * Register all REST API endpoints
@@ -260,68 +210,6 @@
260 210 *
261 211 */
262 212 public function load_textdomain() {
263 213 load_plugin_textdomain( 'templately', false, dirname( TEMPLATELY_PLUGIN_BASENAME ) . '/languages' );
264 - }
265 -
266 - public function google_login_handler() {
267 - // Stop if not a templately google login request
268 - if ( empty( $_GET['templately_google_login'] ) ) {
269 - return;
270 - }
271 -
272 - $redirect_url = remove_query_arg( [ 'templately_google_login', 'api_key', 'error', 'state', 'redirect-to' ] );
273 -
274 - if ( ! empty( $_GET['error'] ) ) {
275 - $error_message = sanitize_text_field( $_GET['error'] );
276 - } elseif ( ! empty( $_GET['api_key'] ) ) {
277 - $request = new \WP_REST_Request( 'POST', '/templately/v1/login' );
278 - $request->set_param( 'viaAPI', true );
279 - $request->set_param( 'api_key', sanitize_text_field( $_GET['api_key'] ) );
280 -
281 - /**
282 - * @var Login $login
283 - */
284 - $login = Login::get_instance();
285 - $login->permission_check( $request );
286 - $response = $login->login();
287 -
288 - if ( ! is_wp_error( $response ) && ! empty( $response['user'] ) ) {
289 - $redirect_path = ! empty( $_GET['redirect-to'] ) ? sanitize_text_field( wp_unslash( $_GET['redirect-to'] ) ) : '';
290 - if ( ! empty( $redirect_path ) ) {
291 - if ( filter_var( $redirect_path, FILTER_VALIDATE_URL ) ) {
292 - $redirect_url = $redirect_path;
293 - } else {
294 - $is_templately = strpos( $redirect_url, 'page=templately' ) !== false;
295 - $is_elementor = strpos( $redirect_url, 'action=elementor' ) !== false;
296 - // Gutenberg editor usually has action=edit or is a block editor page
297 - $is_gutenberg = ( strpos( $redirect_url, 'action=edit' ) !== false || strpos( $redirect_url, 'post_type=' ) !== false ) && ! $is_elementor;
298 -
299 - if ( $is_templately || $is_elementor || $is_gutenberg ) {
300 - $redirect_url = add_query_arg( 'path', ltrim( $redirect_path, '/' ), $redirect_url );
301 -
302 - // Always open the modal in editors after google login
303 - if ( $is_elementor || $is_gutenberg ) {
304 - $redirect_url = add_query_arg( 'templately_open_modal', '1', $redirect_url );
305 - }
306 - }
307 - }
308 - }
309 -
310 - wp_safe_redirect( $redirect_url );
311 - exit;
312 - } else {
313 - $error_message = ( is_wp_error( $response ) ) ? $response->get_error_message() : __( 'Login failed.', 'templately' );
314 - }
315 - } else {
316 - $error_message = __( 'Missing API Key.', 'templately' );
317 - }
318 -
319 - $redirect_url = add_query_arg( [
320 - 'templately_error' => 'login_failed',
321 - 'error_message' => urlencode( $error_message ),
322 - ], $redirect_url );
323 -
324 - wp_safe_redirect( $redirect_url );
325 - exit;
326 214 }
327 215 }