PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.7.0
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.7.0
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
templately / includes / Core / Admin.php

Admin.php in Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! 3.7.0, at includes/Core/Admin.php

602 lines 23.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Templately\Core;
3
4 use Exception;
5 use PriyoMukul\WPNotice\Notices;
6 use PriyoMukul\WPNotice\Utils\CacheBank;
7 use PriyoMukul\WPNotice\Utils\NoticeRemover;
8 use Templately\API\Login;
9 use Templately\Core\Importer\FullSiteImport;
10 use Templately\Utils\Base;
11 use Templately\Utils\Helper;
12 use Templately\Utils\Options;
13 use Templately\Core\Platform\Elementor;
14 use Templately\Core\Platform\Gutenberg;
15
16 class Admin extends Base {
17
18 /**
19 * @var CacheBank
20 */
21 private static $cache_bank;
22
23 /**
24 * Initially invoked function.
25 * Menu, Assets and maybe redirect on plugin activation is initialized.
26 */
27 public function __construct() {
28 add_action( 'admin_enqueue_scripts', [ $this, 'scripts' ] );
29 add_action( 'load-toplevel_page_templately', [ $this, 'before_scripts' ] );
30 add_action( 'admin_menu', [ $this, 'admin_menu' ] );
31
32 self::$cache_bank = CacheBank::get_instance();
33
34 try {
35 add_action( 'admin_init', [ $this, 'notices' ], 11 );
36 } catch ( Exception $e ) {
37 unset( $e );
38 }
39
40 add_filter( 'plugin_action_links_' . TEMPLATELY_PLUGIN_BASENAME, [$this, 'handleActionLinks'], 10, 2 );
41
42 add_action( 'admin_footer', [$this, 'my_custom_footer_html'] );
43
44 // Remove OLD notice from 1.0.0 (if other WPDeveloper plugin has notice)
45 NoticeRemover::get_instance( '1.0.0' );
46 }
47
48 public function register_post_type() {
49 $labels = [
50 'name' => _x( 'Theme Builders', 'Post type general name', 'templately' ),
51 'singular_name' => _x( 'Theme Builder', 'Post type singular name', 'templately' ),
52 'menu_name' => _x( 'Theme Builder', 'Admin Menu text', 'templately' ),
53 'name_admin_bar' => _x( 'Book', 'Add New on Toolbar', 'templately' ),
54 'add_new' => __( 'Add New', 'templately' ),
55 'add_new_item' => __( 'Add New Template', 'templately' ),
56 'new_item' => __( 'New Template', 'templately' ),
57 'edit_item' => __( 'Edit Template', 'templately' ),
58 'view_item' => __( 'View Template', 'templately' ),
59 'all_items' => __( 'All Templates', 'templately' ),
60 'search_items' => __( 'Search Templates', 'templately' ),
61 'parent_item_colon' => __( 'Parent Templates:', 'templately' ),
62 'not_found' => __( 'No templates found.', 'templately' ),
63 'not_found_in_trash' => __( 'No templates found in Trash.', 'templately' ),
64 'featured_image' => _x( 'Template Cover Image', 'Overrides the “Featured Image” phrase for this post type. Added in 4.3', 'templately' ),
65 'set_featured_image' => _x( 'Set cover image', 'Overrides the “Set featured image” phrase for this post type. Added in 4.3', 'templately' ),
66 'remove_featured_image' => _x( 'Remove cover image', 'Overrides the “Remove featured image” phrase for this post type. Added in 4.3', 'templately' ),
67 'use_featured_image' => _x( 'Use as cover image', 'Overrides the “Use as featured image” phrase for this post type. Added in 4.3', 'templately' ),
68 'archives' => _x( 'Template archives', 'The post type archive label used in nav menus. Default “Post Archives”. Added in 4.4', 'templately' ),
69 'insert_into_item' => _x( /** @lang text */ "Insert Into Theme Builder", 'Overrides the “Insert into post”/”Insert into page” phrase (used when inserting media into a post). Added in 4.4', 'templately' ),
70 'uploaded_to_this_item' => _x( 'Uploaded to this template', 'Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used when viewing media attached to a post). Added in 4.4', 'templately' ),
71 'filter_items_list' => _x( 'Filter templates list', 'Screen reader text for the filter links heading on the post type listing screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4', 'templately' ),
72 'items_list_navigation' => _x( 'Templates list navigation', 'Screen reader text for the pagination heading on the post type listing screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4', 'templately' ),
73 'items_list' => _x( 'Templates list', 'Screen reader text for the items list heading on the post type listing screen. Default “Posts list”/”Pages list”. Added in 4.4', 'templately' ),
74 ];
75
76 $args = [
77 'labels' => $labels,
78 'public' => true,
79 'publicly_queryable' => true,
80 'show_ui' => true,
81 'show_in_menu' => false,
82 'query_var' => true,
83 'rewrite' => [ 'slug' => 'templately-library' ],
84 'capability_type' => 'post',
85 'has_archive' => true,
86 'hierarchical' => false,
87 'menu_position' => 10,
88 'supports' => [ 'title', 'editor', 'author', 'thumbnail', 'custom-field' ],
89 ];
90
91 register_post_type( 'templately_library', $args );
92 }
93
94 public function before_scripts() {
95 header("x-frame-options: ALLOW-FROM *.templately.com");
96 }
97
98 /**
99 * Enqueuing Assets
100 *
101 * @param string $hook
102 * @return void
103 */
104 public function scripts( $hook = '' ) {
105 $allowed_hooks = apply_filters(
106 'templately_admin_enqueue_allowed_hooks',
107 [ 'index.php', 'edit.php', 'toplevel_page_templately', 'elementor', 'gutenberg', 'templately_page_templately_settings' ],
108 $hook
109 );
110
111 if ( !empty($hook) && ! in_array( $hook, $allowed_hooks, true ) ) {
112 return;
113 }
114
115 $templately_settings = [];
116 // if('templately_page_templately_settings' === $hook){
117 $kit = null;
118 $el_settings = [];
119 if(defined('ELEMENTOR_VERSION')){
120 $kit = \Elementor\Plugin::$instance->kits_manager->get_active_kit();
121 if($kit){
122 $el_settings = $kit->get_settings();
123 }
124 }
125 $site_logo_id = get_theme_mod( 'custom_logo' );
126 $eb_settings = get_option('eb_global_styles', []);
127 $eb_settings = is_array($eb_settings) ? $eb_settings: [];
128 $eb_settings = array_map(function($item) { return json_decode($item, true); }, $eb_settings);
129 $site_logo = [
130 'id' => $site_logo_id,
131 'url' => $site_logo_id ? wp_get_attachment_url($site_logo_id) : '',
132 // 'size' => (int) get_option('templately_site_logo_size', ''),
133 ];
134
135 $templately_settings = [
136 'nonce' => wp_create_nonce( 'templately_nonce' ),
137 'has_revert' => FullSiteImport::has_revert(),
138 'has_elementor' => $this->check_plugin_status( 'elementor/elementor.php' ),
139 'has_eb' => $this->check_plugin_status( 'essential-blocks/essential-blocks.php' ),
140 'site_logo' => $site_logo,
141 'elementor' => $el_settings,
142 'gutenberg' => $eb_settings,
143 'siteTitle' => get_option('blogname', ''),
144 'siteTagline' => get_option('blogdescription', ''),
145 'customCSS' => get_option('templately_custom_css', ''),
146 // 'imported_platform' => get_option('templately_import_platform', ''),
147 ];
148 // }
149
150 if('index.php' === $hook){
151 // need separate condition so we can return if page is index.php
152
153 $is_complete = get_user_meta(get_current_user_id(), 'templately_fsi_complete', true);
154 if($is_complete && $is_complete !== 'done' && !wp_is_mobile()){
155 $user = Options::get_instance()->get('user');
156 $email = isset($user['email']) ? $user['email'] : '';
157
158 templately()->assets->enqueue( 'templately', 'css/dashboard-style.css', [] );
159 templately()->assets->enqueue( 'templately', 'js/dashboard.js', [], true );
160 templately()->assets->localize( 'templately', 'templately', [
161 'email' => $email,
162 'nonce' => wp_create_nonce( 'templately_nonce' ),
163 ] );
164
165 }
166 return;
167 }
168
169 $templately = [];
170
171 if ( 'edit.php' === $hook ) {
172 global $current_screen;
173 if ( $current_screen->post_type !== 'templately_library' ) {
174 return;
175 }
176
177 $types = templately()->theme_builder::$templates_manager->get_template_types();
178 $types = array_filter( $types, function ( $item ) {
179 return $item::get_property( 'builder' ) || $item::get_property( 'builder' ) === null;
180 } );
181
182 $types = array_reduce( $types, function ( $carry, $item ) {
183 return array_merge( $carry, [
184 [
185 'value' => call_user_func( [ $item, 'get_type' ] ),
186 'label' => call_user_func( [ $item, 'get_title' ] )
187 ]
188 ] );
189 }, [] );
190
191 $templately = [
192 'types' => $types
193 ];
194 }
195
196 $script_dependencies = ['regenerator-runtime'];
197 $_localize_handle = 'templately';
198 $_current_screen = 'templately';
199
200 if ( $hook === 'elementor' || $hook === 'gutenberg' ) {
201 $_current_screen = $hook;
202 $_localize_handle = 'templately-' . $hook;
203 $script_dependencies[] = $_localize_handle;
204 }
205
206 if ( 'templately_page_templately_settings' === $hook ) {
207 templately()->assets->register( 'settings-vendor', 'js/chunks/settings-vendor.js', [], true );
208 $script_dependencies[] = 'settings-vendor';
209 }
210
211 if ( $hook === 'toplevel_page_templately' || $hook == 'edit.php' || 'templately_page_templately_settings' === $hook ) {
212 templately()->assets->enqueue( 'templately-admin', 'css/admin.css', [ 'templately' ] );
213 }
214
215 // Google Fonts Enqueueing
216 // DM Sans - Used in general UI
217 templately()->assets->enqueue(
218 'templately-dmsans',
219 set_url_scheme( '//fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap' )
220 );
221
222 // Inter - Used in Tailwind components and various UI elements
223 templately()->assets->enqueue(
224 'templately-inter',
225 set_url_scheme( '//fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap' )
226 );
227
228 // DM Mono - Used in settings and code-related UI
229 templately()->assets->enqueue(
230 'templately-dmmono',
231 set_url_scheme( '//fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap' )
232 );
233
234 wp_enqueue_style('wp-components');
235
236 wp_enqueue_media();
237 templately()->assets->enqueue( 'templately', 'js/templately.js', $script_dependencies, true );
238 templately()->assets->enqueue( 'templately', 'css/templately.css', ['templately-dmsans', 'templately-inter'] );
239 $tailwind_hooks = apply_filters( 'templately_tailwind_hooks', [ 'toplevel_page_templately', 'elementor', 'gutenberg', 'templately_page_templately_settings', 'edit.php' ] );
240 if ( in_array( $hook, $tailwind_hooks, true ) ) {
241 templately()->assets->enqueue( 'templately-tailwind', 'css/tailwind.css', ['templately', 'templately-inter'] );
242 }
243
244 /**
245 * @var Elementor|Gutenberg $platform
246 */
247 $platform = $this->platform( $_current_screen );
248
249 $global_user = Options::get_instance()->get( 'user', false, get_current_user_id() );
250 $hide_buttons = get_option('templately-gutenberg-hide-buttons', 'no');
251 $hide_buttons = $hide_buttons === 'yes' ? 'yes' : 'no';
252
253 $templately = array_merge( [
254 'url' => home_url(),
255 'site_url' => site_url(),
256 'nonce' => wp_create_nonce( 'templately_nonce' ),
257 'is_ssl' => is_ssl(),
258 'rest_args' => [
259 'nonce' => wp_create_nonce( 'wp_rest' ),
260 'endpoint' => get_rest_url( null, 'templately/v1/' )
261 ],
262 "icons" => [
263 'construction' => templately()->assets->icon( 'icons/construction.gif' ),
264 'profile' => templately()->assets->icon( 'icons/profile.svg' ),
265 'warning' => templately()->assets->icon( 'icons/warning.png' )
266 ],
267 'locale' => get_locale(),
268 'promo_image' => templately()->assets->icon( 'single-page-promo.png' ),
269 'default_image' => templately()->assets->icon( 'clouds/cloud-item.svg' ),
270 'not_found' => templately()->assets->icon( 'no-item-found.png' ),
271 'no_items' => templately()->assets->icon( 'no-items.png' ),
272 'loadingImage' => templately()->assets->icon( 'logos/loading-logo.gif' ),
273 'current_url' => admin_url( 'admin.php?page=templately' ),
274 'wp_dashboard_url' => admin_url( 'index.php' ),
275 'templately_library_url' => admin_url( 'edit.php?post_type=templately_library' ),
276 'is_signed' => Login::is_signed(),
277 'is_globally_signed' => Login::is_globally_signed(),
278 'signed_as_global' => Login::signed_as_global(),
279 'current_screen' => $_current_screen,
280 'can_fsi' => current_user_can('install_plugins') && current_user_can('install_themes'),
281 'post_type' => get_post_type(),
282 'has_elementor' => rest_sanitize_boolean( is_plugin_active( 'elementor/elementor.php' ) ),
283 'has_elementor_pro' => rest_sanitize_boolean( is_plugin_active( 'elementor-pro/elementor-pro.php' ) ),
284 'theme' => $_current_screen == 'templately' ? 'light' : $platform->ui_theme(),
285 'is_wp_support_gutenberg' => version_compare( get_bloginfo( 'version' ), '5.0.0', '>=' ),
286 'hide_buttons' => $hide_buttons,
287 'settings' => $templately_settings,
288 'wp_user_avatar' => get_avatar_url( get_current_user_id(), [ 'size' => 96 ] ),
289 'allowed_mime_types' => get_allowed_mime_types(),
290 'is_free_user' => $global_user === false || isset( $global_user['plan'] ) && $global_user['plan'] == 'free',
291 'is_disconnected' => ! empty( $global_user['is_disconnected'] ),
292 'tour_status' => Options::get_instance()->get( 'tour_status', [] ),
293 ], $templately );
294
295 // Apply filter to allow network admin modifications
296 $templately = apply_filters( 'templately_admin_localized_data', $templately );
297
298 templately()->assets->localize( $_localize_handle, 'templately', $templately );
299
300 do_action( 'templately_admin_scripts', $hook );
301 }
302
303 /**
304 * Check the status of a plugin.
305 *
306 * @param string $plugin_path Plugin path relative to the plugins directory.
307 * @return mixed true if active, false if not installed, 0 if installed but not active.
308 */
309 private function check_plugin_status( $plugin_path ) {
310 $plugins = get_plugins();
311 if ( isset( $plugins[ $plugin_path ] ) ) {
312 return is_plugin_active( $plugin_path ) ? true : 0;
313 }
314 return false;
315 }
316
317 /**
318 * Admin notices for Review and others.
319 *
320 * @since 2.0.0
321 * @return void
322 * @throws Exception
323 * @since 2.0.0
324 */
325 public function notices() {
326 $notices = new Notices( [
327 // 'dev_mode' => true, // also need to clear templately_notices from option/site meta table.
328 'id' => 'templately',
329 'storage_key' => 'notices',
330 'lifetime' => 3,
331 'stylesheet_url' => TEMPLATELY_ASSETS . 'css/notices.css',
332 'styles' => TEMPLATELY_ASSETS . 'css/notices.css',
333 'priority' => 2,
334 ] );
335
336 $global_user = Options::get_instance()->get( 'user', false, get_current_user_id() );
337 $download_counts = Options::get_instance()->get( 'total_download_counts', 0, get_current_user_id() );
338 $cloud_items = 0;
339 if ( isset( $global_user['my_cloud']['usages'] ) ) {
340 $cloud_items = intval( $global_user['my_cloud']['usages'] );
341 }
342
343 if ( $cloud_items >= 5 || $download_counts >= 4 ) {
344 $message = sprintf( __( "We hope you're enjoying %s! Could you please do us a favor and give us a review on %s to help us spread the word and boost our motivation?", 'templately' ), '<strong>Templately</strong>', '<strong>WordPress</strong>' );
345
346 $_review_notice = [
347 'thumbnail' => templately()->assets->icon( 'logos/logo.svg' ),
348 'html' => '<p>' . $message . '</p>',
349 'links' => [
350 'later' => [
351 'link' => 'https://wordpress.org/support/plugin/templately/reviews/#new-post',
352 'target' => '_blank',
353 'label' => __( 'Sure, you deserve it!', 'templately' ),
354 'icon_class' => 'dashicons dashicons-external'
355 ],
356 'allready' => [
357 'label' => __( 'I already did', 'templately' ),
358 'icon_class' => 'dashicons dashicons-smiley',
359 'attributes' => [
360 'data-dismiss' => true
361 ]
362 ],
363 'maybe_later' => [
364 'label' => __( 'Maybe Later', 'templately' ),
365 'icon_class' => 'dashicons dashicons-calendar-alt',
366 'attributes' => [
367 'data-later' => true,
368 'class' => 'dismiss-btn'
369 ]
370 ],
371 'support' => [
372 'link' => 'https://templately.com/?support=open',
373 'attributes' => [
374 'target' => '_blank'
375 ],
376 'label' => __( 'I need help', 'templately' ),
377 'icon_class' => 'dashicons dashicons-sos'
378 ],
379 'never_show_again' => [
380 'label' => __( 'Never show again', 'templately' ),
381 'icon_class' => 'dashicons dashicons-dismiss',
382 'attributes' => [
383 'data-dismiss' => true
384 ]
385 ]
386 ]
387 ];
388
389 $notices->add( 'review', $_review_notice, [
390 'start' => $notices->strtotime(),
391 'recurrence' => 20,
392 'dismissible' => true,
393 'refresh' => TEMPLATELY_VERSION,
394 'screens' => [
395 'dashboard',
396 'plugins',
397 'themes',
398 'edit-page',
399 'edit-post',
400 'users',
401 'tools',
402 'options-general',
403 'nav-menus'
404 ]
405 ] );
406 }
407
408 if ( $global_user === false || isset( $global_user['plan'] ) && $global_user['plan'] == 'free' ) {
409 $crown = '<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m15.743 10.938.161-1.578c.086-.842.142-1.399.098-1.749h.015c.727 0 1.316-.622 1.316-1.389s-.589-1.389-1.315-1.389c-.727 0-1.316.622-1.316 1.39 0 .346.12.663.32.907-.287.186-.66.58-1.223 1.171-.434.456-.65.684-.893.72a.7.7 0 0 1-.394-.059c-.223-.104-.372-.385-.67-.95l-1.57-2.97a22 22 0 0 0-.476-.873c.569-.306.958-.93.958-1.65C10.754 1.496 9.97.667 9 .667s-1.754.829-1.754 1.852c0 .72.389 1.344.958 1.65-.139.234-.293.525-.476.873l-1.57 2.97c-.298.565-.447.846-.67.95a.7.7 0 0 1-.394.058c-.242-.035-.46-.263-.893-.719-.563-.592-.937-.985-1.223-1.171.2-.244.32-.56.32-.908 0-.767-.589-1.389-1.316-1.389-.726 0-1.315.622-1.315 1.39 0 .766.589 1.388 1.315 1.388h.016c-.045.35.012.906.098 1.749l.16 1.578c.09.876.164 1.71.255 2.46H15.49c.09-.75.165-1.584.254-2.46m-7.698 6.395h1.908c2.488 0 3.732 0 4.562-.784.362-.342.591-.959.757-1.762H2.727c.166.803.395 1.42.757 1.762.83.784 2.074.784 4.562.784" fill="#fff"/></svg>';
410
411 // $notices->add( 'upsale', wp_sprintf( '<p>%1$s <a target="_blank" href="%3$s">%2$s</a>.</p>', __( '🔥 Get access to 6,500+ Ready Templates & save up to 65% OFF now', 'templately' ), __( 'Upgrade to Pro', 'templately' ), 'https://templately.com/#pricing' ), [
412 // 'start' => $notices->strtotime( '+10 day' ),
413 // 'dismissible' => true,
414 // 'refresh' => TEMPLATELY_VERSION,
415 // 'screens' => [
416 // 'dashboard',
417 // 'plugins',
418 // 'themes',
419 // 'edit-page',
420 // 'edit-post',
421 // 'users',
422 // 'tools',
423 // 'options-general',
424 // 'nav-menus'
425 // ]
426 // ] );
427
428 // spring_savings_2026 notice
429 $_notice_text_spring_savings_2026 = '<p style="margin-top: 0; margin-bottom: 0px;">🌸 Spring Savings: Design Website Quickly With 6,500+ Elementor & Gutenberg Templates, Including AI-Powered Features ⚡️ – Now <strong>Flat 50% OFF!</strong></p>';
430
431 $_spring_savings_2026 = [
432 'thumbnail' => templately()->assets->icon( 'logos/logo-full.svg' ),
433 'html' => $_notice_text_spring_savings_2026,
434 'links' => [
435 'later' => [
436 'link' => 'https://templately.com/#pricing',
437 'target' => '_blank',
438 'label' => __( 'Upgrade To Pro Now', 'templately' ),
439 'attributes' => [
440 'class' => 'button button-primary',
441 ]
442 ],
443 'never_show_again' => [
444 'label' => __( 'Maybe Later', 'templately' ),
445 'attributes' => [
446 'data-dismiss' => true,
447 'class' => 'button button-link dismiss-btn',
448 ]
449 ],
450 ],
451 ];
452
453 $notices->add( 'spring_savings_2026', $_spring_savings_2026, [
454 'start' => $notices->strtotime('00:00:01AM 8th April, 2026'),
455 'recurrence' => false,
456 'dismissible' => true,
457 'refresh' => TEMPLATELY_VERSION,
458 "expire" => strtotime( '11:59:59pm 10th May, 2026' ),
459 'display_if' => !wp_is_mobile(),
460 'screens' => [
461 'dashboard',
462 ],
463 ] );
464
465 $holiday_text = sprintf(
466 '<p style="margin-top: 0; margin-bottom: 0px;"> 🎁 %s <strong>%s</strong> %s</p>',
467 __('Get', 'templately'),
468 __('Templately PRO', 'templately'),
469 __('with up to 60% OFF & unlock 6500+ ready WordPress templates to power up web design in 2025.', 'templately')
470 );
471
472 $holiday_text .= "<div class='wpnotice-button-wrapper'>";
473 $holiday_text .= sprintf(
474 '<a class="button button-primary" target="_blank" href="%2$s">%1$s</a>',
475 $crown . __('GET PRO Lifetime Access', 'templately'),
476 'https://templately.com/#pricing'
477 );
478 $holiday_text .= sprintf(
479 '<button class="button button-link dismiss-btn" data-dismiss="true">%1$s</button>',
480 __('No, I\'ll Pay Full Price Later', 'templately'),
481 );
482 $holiday_text .= "</div>";
483
484
485 $_holiday = [
486 'thumbnail' => templately()->assets->icon( 'logos/logo-full.svg' ),
487 'html' => $holiday_text,
488 ];
489
490 // $notices->add( 'holiday', $_holiday, [
491 // 'start' => $notices->strtotime( '+0 minute' ),
492 // 'recurrence' => false,
493 // 'dismissible' => true,
494 // 'refresh' => TEMPLATELY_VERSION,
495 // "expire" => strtotime( '11:59:59pm 10th January, 2025' ),
496 // 'display_if' => !wp_is_mobile(),
497 // 'screens' => [
498 // 'dashboard',
499 // ],
500 // ] );
501 }
502
503 self::$cache_bank->create_account( $notices );
504 self::$cache_bank->calculate_deposits( $notices );
505 }
506
507 /**
508 * Adding Menu In Sidebar ( WordPress Left-side Dashboard Menu )
509 *
510 * @return void
511 */
512 public function admin_menu() {
513 // TODO: Role Management
514
515 add_menu_page( 'Templately', 'Templately', 'delete_posts', 'templately', '', templately()->assets->icon( 'logos/logo-icon.svg' ), '58.7' );
516
517 add_submenu_page( 'templately', 'Templately', 'Template Library', 'delete_posts', 'templately', [
518 $this,
519 'display'
520 ], '58.7' );
521
522 add_submenu_page( 'templately', 'Theme Builder', 'Theme Builder', 'delete_posts', 'edit.php?post_type=templately_library', '', '58.7' );
523
524 // add_submenu_page( 'templately', 'Settings', 'Settings', 'administrator', 'templately-settings', [
525 // Settings::get_instance(),
526 // 'display'
527 // ], '58.7' );
528 }
529
530 public function display() {
531 Helper::views( 'template-library' );
532 }
533
534 /**
535 * If Elementor doesn't exists.
536 *
537 * @return void
538 */
539 public static function has_no_elementor() {
540 $plugin_url = \wp_nonce_url( \self_admin_url( 'update.php?action=install-plugin&amp;plugin=elementor' ), 'install-plugin_elementor' );
541 $button_text = 'Install Elementor';
542 if ( isset( Helper::get_plugins()['elementor/elementor.php'] ) ) {
543 $plugin_url = \wp_nonce_url( 'plugins.php?action=activate&amp;plugin=elementor/elementor.php', 'activate-plugin_elementor/elementor.php' );
544 $button_text = 'Activate Elementor';
545 }
546 $output = '<div class="notice notice-error">';
547 $output .= sprintf(
548 "<p><strong>%s</strong> %s <strong>%s</strong> %s &nbsp;&nbsp;<a class='button-primary' href='%s'>%s</a></p>",
549 __( 'Templately', 'templately' ),
550 __( 'requires', 'templately' ),
551 __( 'Elementor', 'templately' ),
552 __( 'plugin to be installed and activated. Please install Elementor to continue.', 'templately' ),
553 esc_url( $plugin_url ),
554 __( $button_text, 'templately' )
555 );
556 $output .= '</div>';
557 echo $output;
558 }
559
560 public function header() {
561 Helper::views( 'header' );
562 }
563
564 /**
565 * Handle links displayed below the plugin name in the WordPress Installed Plugins page.
566 *
567 * @return array
568 * @since 3.1.2
569 * @static
570 *
571 */
572 public static function handleActionLinks($links, $file)
573 {
574 $settingsLink = '<a href="' . admin_url('admin.php?page=templately') . '" aria-label="' . __('Open settings page',
575 'templately') . '">' . __('Templates Library', 'templately') . '</a>';
576
577 $links[] = $settingsLink;
578 return $links;
579 }
580
581
582 public function my_custom_footer_html() {
583 global $current_screen;
584
585 if ( ! $current_screen ) {
586 return false;
587 }
588
589 if($current_screen->id !== 'dashboard'){
590 return false;
591 }
592
593 $is_complete = get_user_meta(get_current_user_id(), 'templately_fsi_complete', true);
594
595 if($is_complete && $is_complete !== 'done' && !wp_is_mobile()):
596 ?>
597 <div id="templately-fsi-feedback"></div>
598 <?php
599 endif;
600 }
601 }
602