PluginProbe
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization / 4.2.13
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization v4.2.13
4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 2.5.5 2.5.6 2.5.7 3.0.0 3.0.1 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.11.0 3.11.1 3.11.2 3.11.3 3.12.0 3.12.1 All 134 releases
optimole-wp / inc / admin.php

admin.php in Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization 4.2.13, at inc/admin.php

2,563 lines 117.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Admin class.
4 *
5 * Author: Andrei Baicus <andrei@themeisle.com>
6 * Created on: 19/07/2018
7 *
8 * @soundtrack Somewhere Else - Marillion
9 * @package \Optimole\Inc
10 * @author Optimole <friends@optimole.com>
11 */
12
13 use enshrined\svgSanitize\Sanitizer;
14 use OptimoleWP\BgOptimizer\Lazyload;
15 use OptimoleWP\PageProfiler\Profile;
16 /**
17 * Class Optml_Admin
18 */
19 class Optml_Admin {
20 use Optml_Normalizer;
21
22 const IMAGE_DATA_COLLECTED = 'optml_image_data_collected';
23
24 const IMAGE_DATA_COLLECTED_BATCH = 100;
25
26 const BF_PROMO_DISMISS_KEY = 'optml_bf25_notice_dismiss';
27
28 const SPC_BANNER_DISMISS_KEY = 'optml_spc_banner_dismiss';
29
30 /**
31 * Hold the settings object.
32 *
33 * @var Optml_Settings Settings object.
34 */
35 public $settings;
36
37 /**
38 * Hold the plugin conflict object.
39 *
40 * @var Optml_Conflicting_Plugins Settings object.
41 */
42 public $conflicting_plugins;
43
44 const NEW_USER_DEFAULTS_UPDATED = 'optml_defaults_updated';
45 const OLD_USER_ENABLED_LD = 'optml_enabled_limit_dimensions';
46 const OLD_USER_ENABLED_CL = 'optml_enabled_cloud_sites';
47
48 const SYNC_CRON = 'optml_daily_sync';
49 const ENRICH_CRON = 'optml_pull_image_data';
50 /**
51 * Optml_Admin constructor.
52 */
53 public function __construct() {
54 $this->settings = new Optml_Settings();
55 $this->conflicting_plugins = new Optml_Conflicting_Plugins();
56
57 $media_rename = new Optml_Attachment_Edit();
58 $media_rename->init();
59
60 $dashboard_widget = new Optml_Dashboard_Widget();
61 $dashboard_widget->init();
62
63 add_filter( 'plugin_action_links_' . plugin_basename( OPTML_BASEFILE ), [ $this, 'add_action_links' ] );
64 add_action( 'admin_menu', [ $this, 'add_dashboard_page' ] );
65 add_action( 'admin_menu', [ $this, 'add_settings_subpage' ], 99 );
66 add_action( 'admin_head', [ $this, 'menu_icon_style' ] );
67 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ], PHP_INT_MIN );
68 add_action( 'admin_notices', [ $this, 'add_notice' ] );
69 add_action( 'admin_notices', [ $this, 'add_notice_upgrade' ] );
70 add_action( 'admin_notices', [ $this, 'add_notice_conflicts' ] );
71 add_action( self::SYNC_CRON, [ $this, 'daily_sync' ] );
72 add_action( 'admin_init', [ $this, 'redirect_old_dashboard' ] );
73 add_action( 'optml_purge_image_cache', [ $this, 'purge_image_cache' ] );
74 if ( $this->settings->is_connected() ) {
75 add_action( 'init', [ $this, 'check_domain_change' ] );
76 add_action( self::ENRICH_CRON, [ $this, 'pull_image_data' ] );
77
78 // Backwards compatibility for older versions of WordPress < 6.0.0 requiring 3 parameters for this specific filter.
79 $below_6_0_0 = version_compare( get_bloginfo( 'version' ), '6.0.0', '<' );
80 if ( $below_6_0_0 ) {
81 add_filter( 'wp_insert_attachment_data', [ $this, 'legacy_detect_image_title_changes' ], 10, 3 );
82 } else {
83 add_filter( 'wp_insert_attachment_data', [ $this, 'detect_image_title_changes' ], 10, 4 );
84 }
85
86 add_action( 'updated_post_meta', [ $this, 'detect_image_alt_change' ], 10, 4 );
87 add_action( 'added_post_meta', [ $this, 'detect_image_alt_change' ], 10, 4 );
88 add_filter( 'update_attached_file', [ $this, 'listen_update_file' ], 999, 2 );
89 if ( ! wp_next_scheduled( self::ENRICH_CRON ) ) {
90 wp_schedule_event( time() + 10, 'hourly', self::ENRICH_CRON );
91 }
92 }
93 add_action( 'init', [ $this, 'update_default_settings' ] );
94 add_action( 'init', [ $this, 'update_limit_dimensions' ] );
95 add_action( 'init', [ $this, 'update_cloud_sites_default' ] );
96 add_action( 'admin_init', [ $this, 'maybe_redirect' ] );
97 add_action( 'admin_init', [ $this, 'init_no_script' ] );
98 add_action( 'plugins_loaded', [ $this,'add_permission_policy' ] );
99 if ( ! is_admin() && $this->settings->is_connected() && ! wp_next_scheduled( self::SYNC_CRON ) ) {
100 wp_schedule_event( time() + 10, 'twicedaily', self::SYNC_CRON, [] );
101 }
102 add_action( 'optml_after_setup', [ $this, 'register_public_actions' ], 999999 );
103
104 if ( ! function_exists( 'is_wpcom_vip' ) ) {
105 add_filter(
106 'upload_mimes',
107 [
108 $this,
109 'allow_svg',
110 ]
111 ); // phpcs:ignore WordPressVIPMinimum.Hooks.RestrictedHooks.upload_mimes
112 add_filter( 'wp_handle_upload_prefilter', [ $this, 'check_svg_and_sanitize' ] );
113 }
114
115 add_filter( 'themeisle-sdk/survey/' . OPTML_PRODUCT_SLUG, [ $this, 'get_survey_metadata' ], 10, 2 );
116 add_action( 'admin_init', [ $this, 'mark_user_with_offload' ] );
117 }
118
119 /**
120 * Add the permission policy for CH.
121 *
122 * @return void
123 */
124 public function add_permission_policy() {
125 if ( ! $this->settings->is_connected() ) {
126 return;
127 }
128 if ( ! $this->settings->is_enabled() ) {
129 return;
130 }
131 if ( headers_sent() ) {
132 return;
133 }
134 $policy = $this->get_permissions_policy();
135 if ( empty( $policy ) ) {
136 return;
137 }
138 header( sprintf( 'Permissions-Policy: %s', $policy ), false );
139 }
140
141 /**
142 * Build the Permissions-Policy header value based on active settings.
143 *
144 * @return string Comma-separated policy directives, or empty string when none apply.
145 */
146 public function get_permissions_policy(): string {
147 $parts = [];
148 $service_url = esc_url( Optml_Config::$service_url );
149
150 if ( $this->settings->is_scale_enabled() ) {
151 $parts[] = sprintf( 'ch-viewport-width=(self "%s")', $service_url );
152 }
153 if ( $this->settings->get( 'network_optimization' ) === 'enabled' ) {
154 $parts[] = sprintf( 'ch-ect=(self "%s")', $service_url );
155 }
156 if ( $this->settings->get( 'retina_images' ) === 'enabled' ) {
157 $parts[] = sprintf( 'ch-dpr=(self "%s")', $service_url );
158 }
159
160 return implode( ', ', $parts );
161 }
162 /**
163 * Function that purges the image cache for a specific file.
164 *
165 * @param string $file Path or url of the file to clear.
166 *
167 * @return void
168 */
169 public function purge_image_cache( $file ) {
170 $basename = wp_basename( $file );
171 $settings = new Optml_Settings();
172 $settings->clear_cache( $basename );
173 }
174 /**
175 * Listen when the file is updated and clear the cache for the file.
176 *
177 * @param string $file The file path.
178 * @param int $post_id The post ID.
179 *
180 * @return string The file path.
181 */
182 public function listen_update_file( $file, $post_id ) {
183 // Purge the image cache.
184 do_action( 'optml_purge_image_cache', $file );
185 return $file;
186 }
187 /**
188 * Check if the file is an SVG, if so handle appropriately
189 *
190 * @param array $file An array of data for a single file.
191 *
192 * @return mixed
193 */
194 public function check_svg_and_sanitize( $file ) {
195 // Ensure we have a proper file path before processing.
196 if ( ! isset( $file['tmp_name'] ) ) {
197 return $file;
198 }
199
200 $file_name = isset( $file['name'] ) ? $file['name'] : '';
201 $wp_filetype = wp_check_filetype_and_ext( $file['tmp_name'], $file_name );
202 $type = ! empty( $wp_filetype['type'] ) ? $wp_filetype['type'] : '';
203
204 if ( 'image/svg+xml' === $type ) {
205 if ( ! current_user_can( 'upload_files' ) ) {
206 $file['error'] = 'Invalid';
207 return $file;
208 }
209
210 if ( ! $this->sanitize_svg( $file['tmp_name'] ) ) {
211 $file['error'] = 'Invalid';
212 }
213 }
214
215 return $file;
216 }
217
218 /**
219 * Sanitize the SVG
220 *
221 * @param string $file Temp file path.
222 *
223 * @return bool|int
224 */
225 protected function sanitize_svg( $file ) {
226 // We can ignore the phpcs warning here as we're reading and writing to the Temp file.
227 $dirty = file_get_contents( $file ); // phpcs:ignore
228
229 // Is the SVG gzipped? If so we try and decode the string.
230 $is_zipped = $this->is_gzipped( $dirty );
231 if ( $is_zipped && ( ! function_exists( 'gzdecode' ) || ! function_exists( 'gzencode' ) ) ) {
232 return false;
233 }
234
235 if ( $is_zipped ) {
236 $dirty = gzdecode( $dirty );
237
238 // If decoding fails, bail as we're not secure.
239 if ( false === $dirty ) {
240 return false;
241 }
242 }
243
244 $sanitizer = new Sanitizer();
245 $clean = $sanitizer->sanitize( $dirty );
246
247 if ( false === $clean ) {
248 return false;
249 }
250
251 // If we were gzipped, we need to re-zip.
252 if ( $is_zipped ) {
253 $clean = gzencode( $clean );
254 }
255
256 // We can ignore the phpcs warning here as we're reading and writing to the Temp file.
257 file_put_contents( $file, $clean ); // phpcs:ignore
258
259 return true;
260 }
261
262 /**
263 * Check if the contents are gzipped
264 *
265 * @see http://www.gzip.org/zlib/rfc-gzip.html#member-format
266 *
267 * @param string $contents Content to check.
268 *
269 * @return bool
270 */
271 protected function is_gzipped( $contents ) {
272 // phpcs:disable Generic.Strings.UnnecessaryStringConcat.Found
273 if ( function_exists( 'mb_strpos' ) ) {
274 return 0 === mb_strpos( $contents, "\x1f" . "\x8b" . "\x08" );
275 } else {
276 return 0 === strpos( $contents, "\x1f" . "\x8b" . "\x08" );
277 }
278 // phpcs:enable
279 }
280
281 /**
282 * Query the database for images and extract the alt/title to send them to the API
283 *
284 * @uses action: optml_pull_image_data
285 */
286 public function pull_image_data() {
287 // Get all image attachments that are not processed
288 $args = [
289 'post_type' => 'attachment',
290 'post_mime_type' => 'image',
291 'posts_per_page' => self::IMAGE_DATA_COLLECTED_BATCH,
292 'meta_query' => [
293 'relation' => 'AND',
294 [
295 'key' => self::IMAGE_DATA_COLLECTED,
296 'compare' => 'NOT EXISTS',
297 ],
298 ],
299 ];
300 $attachments = get_posts( $args );
301
302 $image_data = [];
303
304 foreach ( $attachments as $attachment ) {
305 // Get image URL, alt, and title
306 $image_url = wp_get_attachment_url( $attachment->ID );
307 $image_alt = get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true );
308 $image_title = $attachment->post_title;
309 $image_data[ $image_url ] = [];
310
311 if ( ! empty( $image_alt ) ) {
312 $image_data[ $image_url ]['alt'] = $image_alt;
313 }
314 if ( ! empty( $image_title ) ) {
315 $image_data[ $image_url ]['title'] = $image_title;
316 }
317 if ( empty( $image_data[ $image_url ] ) ) {
318 unset( $image_data[ $image_url ] );
319 }
320
321 // Mark the image as processed
322 update_post_meta( $attachment->ID, self::IMAGE_DATA_COLLECTED, 'yes' );
323 }
324
325 if ( ! empty( $image_data ) ) {
326 $api = new Optml_Api();
327 $api->call_data_enrich_api( $image_data );
328 }
329 }
330
331 /**
332 * Delete the processed meta from an image when the alt text is changed
333 *
334 * @uses action: updated_post_meta, added_post_meta
335 */
336 public function detect_image_alt_change( $meta_id, $post_id, $meta_key, $meta_value ) {
337
338 // Check if the updated metadata is for alt text and it's an attachment
339 if ( $meta_key === '_wp_attachment_image_alt' && get_post_type( $post_id ) === 'attachment' ) {
340 delete_post_meta( $post_id, self::IMAGE_DATA_COLLECTED );
341 }
342 }
343
344 /**
345 * Delete the processed meta from an image when the title is changed
346 *
347 * @uses filter: wp_insert_attachment_data
348 */
349 public function detect_image_title_changes( $data, $postarr, $unsanitized_postarr, $update ) {
350
351 // Check if it's an attachment being updated
352 if ( $data['post_type'] !== 'attachment' ) {
353 return $data;
354 }
355 if ( ! isset( $postarr['ID'] ) ) {
356 return $data;
357 }
358 if ( isset( $postarr['post_title'] ) && isset( $postarr['original_post_title'] ) && $postarr['post_title'] !== $postarr['original_post_title'] ) {
359 delete_post_meta( $postarr['ID'], self::IMAGE_DATA_COLLECTED );
360 }
361
362 return $data;
363 }
364
365 /**
366 * Delete the processed meta from an image when the title is changed
367 *
368 * @uses filter: wp_insert_attachment_data
369 */
370 public function legacy_detect_image_title_changes( $data, $postarr, $unsanitized_postarr ) {
371 return $this->detect_image_title_changes( $data, $postarr, $unsanitized_postarr, true );
372 }
373
374 /**
375 * Init no_script setup value based on whether the user is connected or not.
376 */
377 public function init_no_script() {
378 if ( $this->settings->is_connected() ) {
379 $raw_settings = $this->settings->get_raw_settings();
380 if ( ! isset( $raw_settings['no_script'] ) ) {
381 $this->settings->update( 'no_script', 'enabled' );
382 }
383 }
384 }
385
386 /**
387 * Checks if domain has changed
388 */
389 public function check_domain_change() {
390 $previous_domain = get_option( 'optml_current_domain', 0 );
391 $site_url = $this->to_domain_hash( get_home_url() );
392
393 if ( $site_url !== $previous_domain ) {
394 update_option( 'optml_current_domain', $site_url );
395 if ( $previous_domain !== 0 ) {
396 $this->daily_sync();
397 }
398 }
399 }
400
401 /**
402 * Update the limit dimensions setting to enabled if the user is new.
403 */
404 public function update_default_settings() {
405 if ( get_option( self::NEW_USER_DEFAULTS_UPDATED ) === 'yes' ) {
406 return;
407 }
408
409 if ( $this->settings->is_connected() ) {
410 update_option( self::NEW_USER_DEFAULTS_UPDATED, 'yes' );
411
412 return;
413 }
414
415 $this->settings->update( 'limit_dimensions', 'enabled' );
416 $this->settings->update( 'lazyload', 'enabled' );
417 $this->settings->update( 'skip_lazyload_images', '2' );
418 $this->settings->update( 'compression_mode', 'speed_optimized' );
419
420 update_option( self::NEW_USER_DEFAULTS_UPDATED, 'yes' );
421 }
422
423 /**
424 * Enable limit dimensions for old users after removing the Resize option.
425 *
426 * @return void
427 */
428 public function update_limit_dimensions() {
429 if ( get_option( self::OLD_USER_ENABLED_LD ) === 'yes' ) {
430 return;
431 }
432
433 // New users already have this enabled as we changed defaults.
434 if ( ! $this->settings->is_connected() ) {
435 return;
436 }
437
438 $this->settings->update( 'limit_dimensions', 'enabled' );
439
440 update_option( self::OLD_USER_ENABLED_LD, 'yes' );
441 }
442
443 /**
444 * Enable cloud sites and add the current site to the whitelist.
445 *
446 * @return void
447 */
448 public function update_cloud_sites_default() {
449 if ( get_option( self::OLD_USER_ENABLED_CL ) === 'yes' ) {
450 return;
451 }
452
453 if ( ! $this->settings->is_connected() ) {
454 return;
455 }
456
457 // This is already enabled. Don't alter it.
458 if ( $this->settings->get( 'cloud_images' ) === 'enabled' ) {
459 update_option( self::OLD_USER_ENABLED_CL, 'yes' );
460
461 return;
462 }
463
464 $this->settings->update( 'cloud_images', 'enabled' );
465 $this->settings->update( 'cloud_sites', $this->settings->get_cloud_sites_whitelist_default() );
466
467 update_option( self::OLD_USER_ENABLED_CL, 'yes' );
468 }
469
470 /**
471 * Register public actions.
472 */
473 public function register_public_actions() {
474 add_action( 'wp_head', [ $this, 'generator' ] );
475 add_filter( 'wp_resource_hints', [ $this, 'add_dns_prefetch' ], 10, 2 );
476
477 if ( Optml_Manager::should_ignore_image_tags() ) {
478 return;
479 }
480
481 if ( ! $this->settings->use_lazyload()
482 || ( $this->settings->get( 'native_lazyload' ) === 'enabled'
483 && $this->settings->get( 'video_lazyload' ) === 'disabled'
484 && $this->settings->get( 'bg_replacer' ) === 'disabled' ) ) {
485 return;
486 }
487 add_action( 'wp_enqueue_scripts', [ $this, 'frontend_scripts' ] );
488 add_action( 'wp_head', [ $this, 'inline_bootstrap_script' ] );
489
490 add_filter( 'optml_additional_html_classes', [ $this, 'add_no_js_class_to_html_tag' ], 10 );
491 }
492
493 /**
494 * Use filter to add additional class to html tag.
495 *
496 * @param array $classes The classes to be added.
497 *
498 * @return array
499 */
500 public function add_no_js_class_to_html_tag( $classes ) {
501 // we need the space padding since some plugins might not target correctly with js there own classes
502 // this causes some issues if they concat directly, this way we can protect against that since no matter what
503 // there will be an extra space padding so that classes can be easily identified
504 return array_merge( $classes, [ ' optml_no_js ' ] );
505 }
506
507 /**
508 * Adds script for lazyload/js replacement.
509 */
510 public function inline_bootstrap_script() {
511 $domain = 'https://' . $this->settings->get_cdn_url() . '/js-lib';
512
513 if ( defined( 'OPTML_JS_CDN' ) && constant( 'OPTML_JS_CDN' ) ) {
514 $domain = 'https://' . constant( 'OPTML_JS_CDN' ) . '/js-lib';
515 }
516
517 $min = ! OPTML_DEBUG ? '.min' : '';
518 $bgclasses = Optml_Lazyload_Replacer::get_lazyload_bg_classes();
519 $watcher_classes = Optml_Lazyload_Replacer::get_watcher_lz_classes();
520 $lazyload_bg_selectors = Optml_Lazyload_Replacer::get_background_lazyload_selectors();
521 foreach ( $bgclasses as $key ) {
522 $lazyload_bg_selectors[] = '.' . $key;
523 }
524 $lazyload_bg_selectors = empty( $lazyload_bg_selectors ) ? '' : sprintf( '%s', implode( ', ', (array) $lazyload_bg_selectors ) );
525 $bgclasses = empty( $bgclasses ) ? '' : sprintf( '"%s"', implode( '","', (array) $bgclasses ) );
526 $watcher_classes = empty( $watcher_classes ) ? '' : sprintf( '"%s"', implode( '","', (array) $watcher_classes ) );
527 $default_network = ( $this->settings->get( 'network_optimization' ) === 'enabled' );
528 $limit_dimensions = $this->settings->get( 'limit_dimensions' ) === 'enabled';
529 $limit_width = $limit_dimensions ? $this->settings->get( 'limit_width' ) : 0;
530 $limit_height = $limit_dimensions ? $this->settings->get( 'limit_height' ) : 0;
531 $retina_ready = ( $this->settings->get( 'retina_images' ) !== 'enabled' );
532 $scale_is_disabled = ( $this->settings->get( 'scale' ) === 'enabled' );
533 $native_lazy_enabled = ( $this->settings->get( 'native_lazyload' ) === 'enabled' );
534 $output = sprintf(
535 '
536 <style type="text/css">
537 img[data-opt-src]:not([data-opt-lazy-loaded]) {
538 transition: .2s filter linear, .2s opacity linear, .2s border-radius linear;
539 -webkit-transition: .2s filter linear, .2s opacity linear, .2s border-radius linear;
540 -moz-transition: .2s filter linear, .2s opacity linear, .2s border-radius linear;
541 -o-transition: .2s filter linear, .2s opacity linear, .2s border-radius linear;
542 }
543 img[data-opt-src]:not([data-opt-lazy-loaded]) {
544 opacity: .75;
545 -webkit-filter: blur(8px);
546 -moz-filter: blur(8px);
547 -o-filter: blur(8px);
548 -ms-filter: blur(8px);
549 filter: blur(8px);
550 transform: scale(1.04);
551 animation: 0.1s ease-in;
552 -webkit-transform: translate3d(0, 0, 0);
553 }
554 %s
555 </style>
556 <script type="application/javascript">
557 document.documentElement.className = document.documentElement.className.replace(/\boptml_no_js\b/g, "");
558 (function(w, d){
559 var b = d.getElementsByTagName("head")[0];
560 var s = d.createElement("script");
561 var v = ("IntersectionObserver" in w && "isIntersecting" in w.IntersectionObserverEntry.prototype) ? "_no_poly" : "";
562 s.async = true;
563 s.src = "%s/v2/latest/optimole_lib" + v + "%s.js";
564 b.appendChild(s);
565 w.optimoleData = {
566 lazyloadOnly: "optimole-lazy-only",
567 backgroundReplaceClasses: [%s],
568 nativeLazyload : %s,
569 scalingDisabled: %s,
570 watchClasses: [%s],
571 backgroundLazySelectors: "%s",
572 network_optimizations: %s,
573 ignoreDpr: %s,
574 quality: %d,
575 maxWidth: %d,
576 maxHeight: %d,
577 }
578 }(window, document));
579 </script>',
580 Optml_Lazyload_Replacer::IFRAME_TEMP_COMMENT,
581 esc_url( $domain ),
582 $min,
583 wp_strip_all_tags( $bgclasses ),
584 $native_lazy_enabled ? 'true' : 'false',
585 $scale_is_disabled ? 'true' : 'false',
586 wp_strip_all_tags( $watcher_classes ),
587 addcslashes( wp_strip_all_tags( $lazyload_bg_selectors ), '"' ),
588 defined( 'OPTML_NETWORK_ON' ) && constant( 'OPTML_NETWORK_ON' ) ? ( OPTML_NETWORK_ON ? 'true' : 'false' ) : ( $default_network ? 'true' : 'false' ),
589 $retina_ready ? 'true' : 'false',
590 $this->settings->get_numeric_quality(),
591 $limit_width,
592 $limit_height
593 );
594 echo $output;
595 }
596
597 /**
598 * Add settings links in the plugin listing page.
599 *
600 * @param string[]|mixed $links Old plugin links.
601 *
602 * @return string[]|mixed Altered links.
603 */
604 public function add_action_links( $links ) {
605 if ( ! is_array( $links ) ) {
606 return $links;
607 }
608 return array_merge(
609 $links,
610 [
611 '<a href="' . admin_url( 'admin.php?page=optimole' ) . '">' . __( 'Settings', 'optimole-wp' ) . '</a>',
612 ]
613 );
614 }
615
616 /**
617 * Check if we should show the notice.
618 *
619 * @return bool Should show?
620 */
621 public function should_show_notice() {
622 if ( wp_doing_ajax() ) {
623 return false;
624 }
625
626 if ( is_network_admin() ) {
627 return false;
628 }
629
630 if ( ! current_user_can( 'manage_options' ) ) {
631 return false;
632 }
633
634 if ( $this->settings->is_connected() ) {
635 return false;
636 }
637
638 $current_screen = get_current_screen();
639
640 if ( empty( $current_screen ) ) {
641 return false;
642 }
643
644 if ( ( get_option( 'optml_notice_optin', 'no' ) === 'yes' ) ) {
645 return false;
646 }
647
648 return true;
649 }
650
651 /**
652 * Show upgrade notice.
653 */
654 public function add_notice_upgrade() {
655 if ( ! $this->should_show_upgrade() ) {
656 return;
657 }
658 ?>
659 <div class="notice optml-notice-optin"
660 style="background-color: #577BF9; color:white; border: none !important; display: flex; align-items: center;">
661 <div style="margin: 1% 2%;">
662 <img style="max-width: 100px;" src='<?php echo OPTML_URL . 'assets/img/upgrade_icon.png'; ?>'>
663 </div>
664 <div style="display: grid; gap: 10px;">
665 <p style="font-size: 16px !important;">
666 <?php
667 printf(
668 /* translators: 1 - visits limit */
669 __( 'You\'re nearing your %1$s-visit monthly cap on Optimole. If you exceed it, we\'ll serve original (unoptimized) images - expect slower pages.', 'optimole-wp' ),
670 '<strong>' . number_format_i18n( 2000 ) . '</strong>'
671 );
672 ?>
673 </p>
674 <p style="margin: 1.5% 0;">
675 <a href="<?php echo esc_url( tsdk_translate_link( self::get_upgrade_base_link() ) ); ?>"
676 target="_blank"
677 style="border-radius: 4px;padding: 9px 10px;border: 2px solid #FFF;color: white;text-decoration: none;"><?php _e( 'Check upgrade plans', 'optimole-wp' ); ?>
678 </a>
679 <a style="padding: 2%; color: white;"
680 href="<?php echo wp_nonce_url( add_query_arg( [ 'optml_hide_upg' => 'yes' ] ), 'hide_nonce', 'optml_nonce' ); ?>"><?php _e( 'I have already done this', 'optimole-wp' ); ?></a>
681 </p>
682 </div>
683 </div>
684 <?php
685 }
686
687 /**
688 * Check if we should show the upgrade notice to users.
689 *
690 * @return bool Should we show it?
691 */
692 public function should_show_upgrade() {
693 $current_screen = get_current_screen();
694 if ( wp_doing_ajax() ||
695 is_network_admin() ||
696 ! current_user_can( 'manage_options' ) ||
697 ! $this->settings->is_connected() ||
698 empty( $current_screen )
699 ) {
700 return false;
701 }
702 if ( get_option( 'optml_notice_hide_upg', 'no' ) === 'yes' ) {
703 return false;
704 }
705 if ( $current_screen->base !== 'upload' ) {
706 return false;
707 }
708 $service_data = $this->settings->get( 'service_data' );
709 if ( ! isset( $service_data['plan'] ) ) {
710 return false;
711 }
712 if ( $service_data['plan'] !== 'free' ) {
713 return false;
714 }
715 $visitors_limit = isset( $service_data['visitors_limit'] ) ? (int) $service_data['visitors_limit'] : 0;
716 $visitors_left = isset( $service_data['visitors_left'] ) ? (int) $service_data['visitors_left'] : 0;
717 if ( $visitors_limit === 0 ) {
718 return false;
719 }
720 if ( $visitors_left > 300 ) {
721 return false;
722 }
723
724 return true;
725 }
726
727 /**
728 * Build upgrade URL with current user's encoded email.
729 *
730 * @return string Upgrade URL.
731 */
732 public static function get_upgrade_base_link() {
733 $base_url = 'https://optimole.com/upgrade';
734 $base_url = tsdk_translate_link( $base_url );
735 $email = self::get_account_email();
736
737 if ( ! empty( $email ) ) {
738 $base_url = add_query_arg( 'email', base64_encode( $email ), $base_url );
739 }
740
741 return $base_url;
742 }
743
744 /**
745 * Get contact URL.
746 *
747 * @return string Contact URL.
748 */
749 public static function get_contact_base_link() {
750 return tsdk_translate_link( 'https://optimole.com/contact' );
751 }
752
753 /**
754 * Retrieve Optimole account email.
755 *
756 * @return string
757 */
758 private static function get_account_email() {
759 $settings = new Optml_Settings();
760 $service_data = $settings->get( 'service_data' );
761
762 if ( isset( $service_data['user_email'] ) && is_string( $service_data['user_email'] ) ) {
763 $email = sanitize_email( $service_data['user_email'] );
764 if ( ! empty( $email ) ) {
765 return $email;
766 }
767 }
768
769 return '';
770 }
771
772 /**
773 * CSS styles for Notice.
774 */
775 public static function notice_styles() {
776 ?>
777 <style>
778 .optml-notice-optin:not(.has-dismiss) {
779 background: url(" <?php echo esc_attr( OPTML_URL . '/assets/img/disconnected.svg' ); ?> ") #fff 100% 0 no-repeat;
780 position: relative;
781 padding: 0;
782 }
783
784 .optml-notice-optin.has-dismiss {
785 position: relative;
786 }
787
788 .optml-notice-optin .content {
789 background: rgba(255, 255, 255, 0.75);
790 display: flex;
791 align-items: center;
792 padding: 20px;
793 }
794
795 .optml-notice-optin img {
796 max-width: 100px;
797 margin-right: 20px;
798 display: none;
799 }
800
801 .optml-notice-optin .description {
802 font-size: 14px;
803 margin-bottom: 20px;
804 color: #000;
805 }
806
807 .optml-notice-optin .actions {
808 margin-top: auto;
809 display: flex;
810 gap: 20px;
811 }
812
813 @media screen and (min-width: 768px) {
814 .optml-notice-optin img {
815 display: block;
816 }
817 }
818 </style>
819 <?php
820 }
821
822 /**
823 * JS for Notice.
824 */
825 public static function notice_js( $action ) {
826 ?>
827 <script>
828 jQuery(document).ready(function ($) {
829 // AJAX request to update the option value
830 $('.optml-notice-optin button.notice-dismiss').click(function (e) {
831 e.preventDefault();
832
833 var notice = $(this).closest('.optml-notice-optin');
834 var nonce = '<?php echo esc_attr( wp_create_nonce( $action ) ); ?>';
835
836 $.ajax({
837 url: window.ajaxurl,
838 type: 'POST',
839 data: {
840 action: '<?php echo esc_attr( $action ); ?>',
841 nonce
842 },
843 complete() {
844 notice.remove();
845 }
846 });
847 });
848 });
849 </script>
850 <?php
851 }
852
853 /**
854 * Adds opt in notice.
855 */
856 public function add_notice() {
857 if ( ! $this->should_show_notice() ) {
858 return;
859 }
860
861 self::notice_styles();
862 ?>
863 <div class="notice notice-info optml-notice-optin">
864 <div class="content">
865 <img src="<?php echo OPTML_URL . '/assets/img/logo.svg'; ?>"
866 alt="<?php echo esc_attr__( 'Logo', 'optimole-wp' ); ?>"/>
867
868 <div>
869 <p class="notice-title"> <?php echo esc_html__( 'Finish setting up!', 'optimole-wp' ); ?></p>
870 <p class="description">
871 <?php
872 printf(
873 /* translators: 1 - opening strong tag, 2 - closing strong tag, 3 - opening strong tag, 4 - closing strong tag */
874 __( 'Welcome to %1$sOptimole%2$s, the easiest way to optimize your website images. Your users will enjoy a %3$sfaster%4$s website after you connect it with our service.', 'optimole-wp' ),
875 '<strong>',
876 '</strong>',
877 '<strong>',
878 '</strong>'
879 );
880 ?>
881 </p>
882 <div class="actions">
883 <a href="<?php echo esc_url( admin_url( 'admin.php?page=optimole' ) ); ?>"
884 class="button button-primary button-hero"><?php _e( 'Connect to Optimole', 'optimole-wp' ); ?>
885 </a>
886 <a class="button button-secondary button-hero"
887 href="<?php echo wp_nonce_url( add_query_arg( [ 'optml_hide_optin' => 'yes' ] ), 'hide_nonce', 'optml_nonce' ); ?>"><?php _e( 'I will do it later', 'optimole-wp' ); ?>
888 </a>
889 </div>
890 </div>
891 </div>
892 </div>
893 <?php
894 }
895
896 /**
897 * Adds conflicts notice.
898 */
899 public function add_notice_conflicts() {
900 if ( ! $this->conflicting_plugins->should_show_notice() ) {
901 return;
902 }
903
904 $plugins = $this->conflicting_plugins->get_conflicting_plugins();
905 $names = [];
906
907 foreach ( $plugins as $plugin ) {
908 $plugin_data = get_plugin_data( WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . $plugin );
909 $names[] = $plugin_data['Name'];
910 }
911
912 $names = implode( ', ', $names );
913
914 self::notice_styles();
915 self::notice_js( 'optml_dismiss_conflict_notice' );
916 ?>
917 <div class="notice notice-info optml-notice-optin has-dismiss">
918 <div class="content">
919 <img src="<?php echo OPTML_URL . '/assets/img/logo.svg'; ?>"
920 alt="<?php echo esc_attr__( 'Logo', 'optimole-wp' ); ?>"/>
921
922 <div>
923 <p class="notice-title">
924 <strong><?php echo esc_html__( 'Oops... Multiple image optimization plugins active', 'optimole-wp' ); ?></strong>
925 </p>
926 <p class="description">
927 <?php
928 printf(
929 /* translators: 1 - plugin name, 2 - opening bold tag, 3 - closing bold tag */
930 __( 'We noticed multiple image optimization plugins active on your site, which may cause issues in Optimole. We recommend using only one image optimization plugin on your site for the best results. The following plugins may cause issues in Optimole: %2$s%1$s%3$s.', 'optimole-wp' ),
931 $names,
932 '<strong>',
933 '</strong>'
934 );
935 ?>
936 </p>
937 <div class="actions">
938 <a href="<?php echo esc_url( admin_url( 'plugins.php?optimole_conflicts' ) ); ?>"
939 class="button button-primary button-hero"><?php _e( 'Manage Plugins', 'optimole-wp' ); ?>
940 </a>
941 </div>
942 </div>
943 </div>
944
945 <button type="button" class="notice-dismiss">
946 <span class="screen-reader-text"><?php _e( 'Dismiss this notice.', 'optimole-wp' ); ?></span>
947 </button>
948 </div>
949 <?php
950 }
951
952 /**
953 * Add style classes for lazy loading background images.
954 */
955 protected function get_background_lazy_css() {
956
957 $watchers = Optml_Lazyload_Replacer::get_background_lazyload_selectors();
958
959 $css = [];
960 foreach ( $watchers as $selector ) {
961 $css[] = 'html ' . $selector . ':not(.optml-bg-lazyloaded)';
962 }
963 if ( empty( $css ) ) {
964 return '';
965 }
966 $css = implode( ",\n", $css ) . ' { background-image: none !important; }';
967
968 $css = Lazyload::MARKER . "\n" . strip_tags( $css ) . "\n" . Lazyload::MARKER;
969 return $css;
970 }
971
972 /**
973 * Enqueue frontend scripts.
974 */
975 public function frontend_scripts() {
976
977 $bg_css = $this->get_background_lazy_css();
978
979 wp_register_style( 'optm_lazyload_noscript_style', false );
980 wp_enqueue_style( 'optm_lazyload_noscript_style' );
981 wp_add_inline_style( 'optm_lazyload_noscript_style', "html.optml_no_js img[data-opt-src] { display: none !important; } \n " . $bg_css );
982
983 if ( $this->settings->use_lazyload() === true ) {
984 wp_register_script( 'optml-print', false );
985 wp_enqueue_script( 'optml-print' );
986 $script = '
987 (function(w, d){
988 w.addEventListener("beforeprint", function(){
989 let images = d.getElementsByTagName( "img" );
990 for (let img of images) {
991 if ( !img.dataset.optSrc) {
992 continue;
993 }
994 img.src = img.dataset.optSrc;
995 delete img.dataset.optSrc;
996 }
997 });
998
999 }(window, document));
1000 ';
1001 wp_add_inline_script( 'optml-print', $script );
1002 }
1003 if ( Optml_Manager::should_load_profiler() ) {
1004 add_action(
1005 'wp_footer',
1006 function () {
1007
1008 print ( self::get_optimizer_script() );
1009 }
1010 );
1011 }
1012 print ( self::get_preload_links_placeholder() );
1013 }
1014 /**
1015 * Get the optimizer script.
1016 *
1017 * @param bool $placeholder Whether to return the placeholder or the actual script.
1018 *
1019 * @return string The optimizer script.
1020 */
1021 public static function get_optimizer_script( $placeholder = true ) {
1022
1023 if ( $placeholder ) {
1024 return '<script id=optmloptimizer></script>';
1025 }
1026
1027 return '<script async src="' . add_query_arg( 'v', OPTML_VERSION, OPTML_URL . 'assets/build/optimizer/optimizer.js' ) . '"></script><script id="optmloptimizer" >
1028 var optimoleDataOptimizer = ' . wp_json_encode(
1029 [
1030 'restUrl' => esc_js( untrailingslashit( rest_url( OPTML_NAMESPACE . '/v1' ) ) ),
1031 'nonce' => esc_js( wp_create_nonce( 'wp_rest' ) ),
1032 'missingDevices' => esc_js( Profile::PLACEHOLDER_MISSING ),
1033 'pageProfileId' => esc_js( Profile::PLACEHOLDER ),
1034 'pageProfileUrl' => esc_js( Profile::PLACEHOLDER_URL ),
1035 '_t' => esc_js( Profile::PLACEHOLDER_TIME ),
1036 'hmac' => esc_js( Profile::PLACEHOLDER_HMAC ),
1037 'bgSelectors' => array_values( Optml_Lazyload_Replacer::get_background_lazyload_selectors() ),
1038 ]
1039 ) . ';
1040 </script>';
1041 }
1042
1043 /**
1044 * Get the preload links placeholder.
1045 *
1046 * @return string The preload links placeholder.
1047 */
1048 public static function get_preload_links_placeholder(): string {
1049 return '<script id=optmlpreload></script>';
1050 }
1051 /**
1052 * Maybe redirect to dashboard page.
1053 */
1054 public function maybe_redirect() {
1055 if ( isset( $_GET['optml_nonce'] ) && isset( $_GET['optml_hide_optin'] ) && $_GET['optml_hide_optin'] === 'yes' && wp_verify_nonce( $_GET['optml_nonce'], 'hide_nonce' ) ) {
1056 update_option( 'optml_notice_optin', 'yes' );
1057 }
1058
1059 if ( isset( $_GET['optml_nonce'] ) && isset( $_GET['optml_hide_upg'] ) && $_GET['optml_hide_upg'] === 'yes' && wp_verify_nonce( $_GET['optml_nonce'], 'hide_nonce' ) ) {
1060 update_option( 'optml_notice_hide_upg', 'yes' );
1061 }
1062
1063 if ( ! get_transient( 'optml_fresh_install' ) ) {
1064 return;
1065 }
1066
1067 if ( wp_doing_ajax() ) {
1068 return;
1069 }
1070
1071 delete_transient( 'optml_fresh_install' );
1072
1073 if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
1074 return;
1075 }
1076
1077 if ( $this->settings->is_connected() ) {
1078 return;
1079 }
1080
1081 wp_safe_redirect( admin_url( 'admin.php?page=optimole' ) );
1082 exit;
1083 }
1084
1085 /**
1086 * Output Generator tag.
1087 */
1088 public function generator() {
1089 if ( ! $this->settings->is_connected() ) {
1090 return;
1091 }
1092 if ( ! $this->settings->is_enabled() ) {
1093 return;
1094 }
1095
1096 $hints = $this->get_accept_ch_hints();
1097 if ( empty( $hints ) ) {
1098 return;
1099 }
1100 echo sprintf( '<meta http-equiv="Accept-CH" content="%s" />', esc_attr( $hints ) );
1101 }
1102
1103 /**
1104 * Build the Accept-CH meta content value based on active settings.
1105 *
1106 * Mirrors the directives used in get_permissions_policy() so both
1107 * the Permissions-Policy header and the Accept-CH meta stay in sync.
1108 *
1109 * @return string Comma-separated hint tokens, or empty string when none apply.
1110 */
1111 public function get_accept_ch_hints(): string {
1112 $hints = [];
1113
1114 if ( $this->settings->is_scale_enabled() ) {
1115 $hints[] = 'Viewport-Width';
1116 }
1117 if ( $this->settings->get( 'network_optimization' ) === 'enabled' ) {
1118 $hints[] = 'ECT';
1119 }
1120 if ( $this->settings->get( 'retina_images' ) === 'enabled' ) {
1121 $hints[] = 'DPR';
1122 }
1123
1124 return implode( ', ', $hints );
1125 }
1126
1127 /**
1128 * Update daily the quota routine.
1129 */
1130 public function daily_sync() {
1131
1132 $api_key = $this->settings->get( 'api_key' );
1133 $service_data = $this->settings->get( 'service_data' );
1134 $application = '';
1135
1136 if ( isset( $service_data['cdn_key'] ) ) {
1137 $application = $service_data['cdn_key'];
1138 }
1139
1140 if ( empty( $api_key ) ) {
1141 return;
1142 }
1143
1144 $request = new Optml_Api();
1145 $data = $request->get_user_data( $api_key, $application );
1146 if ( $data === false || is_wp_error( $data ) ) {
1147 return;
1148 }
1149 if ( $data === 'disconnect' ) {
1150 $settings = new Optml_Settings();
1151 $settings->reset();
1152
1153 return;
1154 }
1155
1156 add_filter( 'optml_dont_trigger_settings_updated', '__return_true' );
1157 $this->settings->update( 'service_data', $data );
1158
1159 if ( isset( $data['extra_visits'] ) ) {
1160 $this->settings->update_frontend_banner_from_remote( $data['extra_visits'] );
1161 }
1162
1163 // Here the account got deactivated, in this case we check if the user is using offloaded images and we roll them back.
1164 $should_revert_offloading = isset( $data['status'] ) && $data['status'] === 'inactive';
1165
1166 // The user is now on a plan without offloading and the grace period is over.
1167 if ( isset( $data['should_revert_offload'] ) && (bool) $data['should_revert_offload'] ) {
1168 $should_revert_offloading = true;
1169 }
1170
1171 if ( $should_revert_offloading ) {
1172 // We check if the user has images offloaded.
1173 if ( $this->settings->get( 'offload_media' ) === 'disabled' ) {
1174 return;
1175 }
1176
1177 $in_progress = $this->settings->get( 'offloading_status' ) !== 'disabled';
1178 // We check if there is an in progress transfer, we stop it.
1179 if ( $in_progress ) {
1180 $this->settings->update( 'offloading_status', 'disabled' );
1181 }
1182 $this->settings->update( 'rollback_status', 'enabled' );
1183 // We start the rollback process.
1184 Optml_Logger::instance()->add_log( 'rollback_images', 'Account deactivated, starting rollback.' );
1185 Optml_Media_Offload::move_images( 'rollback_images', false );
1186 $this->settings->update( 'offload_media', 'disabled' );
1187 }
1188 remove_filter( 'optml_dont_trigger_settings_updated', '__return_true' );
1189 }
1190
1191 /**
1192 * Adds cdn url for prefetch.
1193 *
1194 * @param array $hints Hints array.
1195 * @param string $relation_type Type of relation.
1196 *
1197 * @return array Altered hints array.
1198 */
1199 public function add_dns_prefetch( $hints, $relation_type ) {
1200 if ( 'dns-prefetch' !== $relation_type &&
1201 'preconnect' !== $relation_type
1202 ) {
1203 return $hints;
1204 }
1205 if ( ! $this->settings->is_connected() ) {
1206 return $hints;
1207 }
1208 if ( ! $this->settings->is_enabled() ) {
1209 return $hints;
1210 }
1211 $hints[] = sprintf( 'https://%s', $this->settings->get_cdn_url() );
1212
1213 return $hints;
1214 }
1215
1216 /**
1217 * Add the dashboard page.
1218 */
1219 public function add_dashboard_page() {
1220 if ( defined( 'OPTIOMLE_HIDE_ADMIN_AREA' ) && OPTIOMLE_HIDE_ADMIN_AREA ) {
1221 return;
1222 }
1223
1224 add_menu_page(
1225 'Optimole',
1226 'Optimole',
1227 'manage_options',
1228 'optimole',
1229 [ $this, 'render_dashboard_page' ],
1230 OPTML_URL . 'assets/img/logo.svg',
1231 11
1232 );
1233 }
1234
1235 /**
1236 * Add menu icon style.
1237 *
1238 * @return void
1239 */
1240 public function menu_icon_style() {
1241 $conflicts_count = $this->get_active_notices_count();
1242 $badge_html = '';
1243
1244 if ( $conflicts_count > 0 ) {
1245 $badge_html = sprintf(
1246 '<style>
1247 #toplevel_page_optimole .wp-menu-name::after {
1248 content: "%d";
1249 background: #d63638;
1250 border-radius: 10px;
1251 padding: 1.5px 1px;
1252 font-size: 11px;
1253 margin-left: 5px;
1254 min-width: 18px;
1255 display: inline-block;
1256 text-align: center;
1257 }
1258 </style>',
1259 $conflicts_count
1260 );
1261 }
1262
1263 echo '<style>#toplevel_page_optimole img{ max-width:22px;padding-top:6px!important;opacity:.9!important;} #toplevel_page_optimole li.wp-first-item{ display:none }</style>' . $badge_html;
1264 }
1265
1266 /**
1267 * Add the settings page.
1268 *
1269 * We do it with another priority as it goes above the cloud library otherwise.
1270 */
1271 public function add_settings_subpage() {
1272 if ( defined( 'OPTIOMLE_HIDE_ADMIN_AREA' ) && OPTIOMLE_HIDE_ADMIN_AREA ) {
1273 return;
1274 }
1275
1276 if ( ! $this->settings->is_connected() ) {
1277 return;
1278 }
1279
1280 add_submenu_page(
1281 'optimole',
1282 __( 'Settings', 'optimole-wp' ),
1283 __( 'Settings', 'optimole-wp' ),
1284 'manage_options',
1285 'optimole#settings',
1286 [ $this, 'render_dashboard_page' ]
1287 );
1288 }
1289
1290
1291 /**
1292 * Redirect old dashboard.
1293 *
1294 * @return void
1295 */
1296 public function redirect_old_dashboard() {
1297 if ( ! is_admin() ) {
1298 return;
1299 }
1300
1301 global $pagenow;
1302
1303 if ( $pagenow !== 'upload.php' ) {
1304 return;
1305 }
1306
1307 if ( ! isset( $_GET['page'] ) ) {
1308 return;
1309 }
1310
1311 if ( $_GET['page'] !== 'optimole' ) {
1312 return;
1313 }
1314
1315 wp_safe_redirect( admin_url( 'admin.php?page=optimole' ) );
1316
1317 exit;
1318 }
1319
1320 /**
1321 * Render dashboard page.
1322 */
1323 public function render_dashboard_page() {
1324 if ( get_option( 'optml_notice_optin', 'no' ) !== 'yes' ) {
1325 update_option( 'optml_notice_optin', 'yes' );
1326 }
1327 ?>
1328 <style>
1329 .notice:not(.optml-notice-optin) {
1330 display: none !important;
1331 }
1332 </style>
1333 <div id="optimole-app"></div>
1334 <?php
1335 }
1336
1337 /**
1338 * Enqueue scripts needed for admin functionality.
1339 *
1340 * @codeCoverageIgnore
1341 */
1342 public function enqueue() {
1343
1344 $current_screen = get_current_screen();
1345 if ( ! isset( $current_screen->id ) ) {
1346 return;
1347 }
1348 if ( $current_screen->id === 'upload' ) {
1349 wp_enqueue_script( OPTML_NAMESPACE . '-media-admin', OPTML_URL . 'assets/js/media.js', [], OPTML_VERSION );
1350 wp_localize_script(
1351 OPTML_NAMESPACE . '-media-admin',
1352 'optimoleMediaListing',
1353 [
1354 'rest_url' => rest_url( OPTML_NAMESPACE . '/v1/move_image' ),
1355 'nonce' => wp_create_nonce( 'wp_rest' ),
1356 ]
1357 );
1358
1359 wp_register_style( 'optml_media_admin_style', false );
1360 wp_add_inline_style(
1361 'optml_media_admin_style',
1362 '
1363 .is-loading {
1364 pointer-events: none;
1365 opacity: 0.5;
1366 display: inline-block;
1367 }
1368 .spinner {
1369 margin-top: 0px;
1370 }
1371 '
1372 );
1373 wp_enqueue_style( 'optml_media_admin_style' );
1374 }
1375 if ( $current_screen->id !== 'toplevel_page_optimole' ) {
1376 return;
1377 }
1378
1379 $asset_file = include OPTML_PATH . 'assets/build/dashboard/index.asset.php';
1380 wp_register_script(
1381 OPTML_NAMESPACE . '-admin',
1382 OPTML_URL . 'assets/build/dashboard/index.js',
1383 array_merge( $asset_file['dependencies'], [ 'updates' ] ),
1384 $asset_file['version'],
1385 true
1386 );
1387
1388 wp_localize_script( OPTML_NAMESPACE . '-admin', 'optimoleDashboardApp', $this->localize_dashboard_app() );
1389 wp_enqueue_script( OPTML_NAMESPACE . '-admin' );
1390
1391 wp_enqueue_style(
1392 OPTML_NAMESPACE . '-admin',
1393 OPTML_URL . 'assets/build/dashboard/style-index.css',
1394 [
1395 'wp-components',
1396 ],
1397 $asset_file['version']
1398 );
1399
1400 do_action( 'themeisle_internal_page', OPTML_PRODUCT_SLUG, 'dashboard' );
1401 }
1402
1403 /**
1404 * Localize the dashboard app.
1405 *
1406 * @codeCoverageIgnore
1407 * @return array
1408 */
1409 private function localize_dashboard_app() {
1410
1411 global $wp_version;
1412 $is_offload_media_available = 'no';
1413 if ( version_compare( $wp_version, '5.3', '>=' ) ) {
1414 $is_offload_media_available = 'yes';
1415 }
1416 $api_key = $this->settings->get( 'api_key' );
1417 $service_data = $this->settings->get( 'service_data' );
1418 if ( ! is_array( $service_data ) ) {
1419 $service_data = [];
1420 }
1421 $user = get_userdata( get_current_user_id() );
1422 $user_status = 'inactive';
1423 $auto_connect = get_option( Optml_Settings::OPTML_USER_EMAIL, 'no' );
1424 $available_apps = isset( $service_data['available_apps'] ) ? $service_data['available_apps'] : null;
1425 if ( isset( $service_data['cdn_key'] ) && $available_apps !== null ) {
1426 foreach ( $service_data['available_apps'] as $app ) {
1427 if ( isset( $app['key'] ) && $app['key'] === $service_data['cdn_key'] && isset( $app['status'] ) && $app['status'] === 'active' ) {
1428 $user_status = 'active';
1429 }
1430 }
1431 }
1432 $routes = [];
1433 foreach ( Optml_Rest::$rest_routes as $route_type ) {
1434 foreach ( $route_type as $route => $details ) {
1435 $routes[ $route ] = OPTML_NAMESPACE . '/v1/' . $route;
1436 }
1437 }
1438 // Disable this for now, we need a better way to detect it.
1439 // $cron_disabled = apply_filters( 'optml_offload_wp_cron_disabled', defined( 'DISABLE_WP_CRON' ) && constant( 'DISABLE_WP_CRON' ) === true );
1440
1441 $language = get_user_locale();
1442 $available_languages = [
1443 'de_DE' => 'de',
1444 'de_DE_formal' => 'de',
1445 ];
1446 $lang_code = isset( $available_languages[ $language ] ) ? 'de' : 'en';
1447
1448 $site_settings = $this->settings->get_site_settings();
1449 if ( ! empty( $service_data ) ) {
1450 $service_data['domain_dns'] = $this->settings->get_cdn_url();
1451 }
1452 if ( isset( $service_data['renews_on'] ) ) {
1453 $service_data['renews_on_formatted'] = date_i18n( get_option( 'date_format' ), $service_data['renews_on'] );
1454
1455 }
1456
1457 $user_plan = isset( $service_data['plan'] ) ? $service_data['plan'] : 'free';
1458
1459 return [
1460 'strings' => $this->get_dashboard_strings(),
1461 'assets_url' => OPTML_URL . 'assets/',
1462 'dam_url' => 'admin.php?page=optimole-dam',
1463 'connection_status' => empty( $service_data ) ? 'no' : 'yes',
1464 'has_application' => isset( $service_data['app_count'] ) && $service_data['app_count'] >= 1 ? 'yes' : 'no',
1465 'user_status' => $user_status,
1466 'available_apps' => $available_apps,
1467 'api_key' => $api_key,
1468 'routes' => $routes,
1469 'language' => $lang_code,
1470 'nonce' => wp_create_nonce( 'wp_rest' ),
1471 'user_data' => $service_data,
1472 'remove_latest_images' => defined( 'OPTML_REMOVE_LATEST_IMAGES' ) && constant( 'OPTML_REMOVE_LATEST_IMAGES' ) ? ( OPTML_REMOVE_LATEST_IMAGES ? 'yes' : 'no' ) : 'no',
1473 'current_user' => [
1474 'email' => $user->user_email,
1475 ],
1476 'site_settings' => $site_settings,
1477 'offload_limit' => $this->settings->get( 'offload_limit' ),
1478 'home_url' => home_url(),
1479 'optimoleHome' => tsdk_translate_link( 'https://optimole.com/' ),
1480 'optimoleDashHome' => tsdk_translate_link( 'https://dashboard.optimole.com/', 'query' ),
1481 'optimoleDashBilling' => tsdk_translate_link( 'https://dashboard.optimole.com/settings/billing', 'query' ),
1482 'optimoleDashMetrics' => tsdk_translate_link( tsdk_utmify( 'https://dashboard.optimole.com/metrics', 'wp-plugin', 'shortcut' ) ),
1483 'offload_upgrade_url' => tsdk_translate_link( tsdk_utmify( 'https://optimole.com/pricing/', 'offload' ) ),
1484 'days_since_install' => round( ( time() - get_option( 'optimole_wp_install', 0 ) ) / DAY_IN_SECONDS ),
1485 'is_offload_media_available' => $is_offload_media_available,
1486 'auto_connect' => $auto_connect,
1487 'cron_disabled' => false, // $cron_disabled && ! function_exists( 'as_schedule_single_action' ),
1488 'submenu_links' => [
1489 [
1490 'href' => 'admin.php?page=optimole#settings',
1491 'text' => __( 'Settings', 'optimole-wp' ),
1492 'hash' => '#settings',
1493 ],
1494 ],
1495 'bf_notices' => $this->get_bf_notices( $user_plan ),
1496 'spc_banner' => $this->get_spc_banner(),
1497 'show_exceed_plan_quota_notice' => $this->should_show_exceed_quota_warning(),
1498 'show_free_user_with_offload_notice' => get_option( 'optml_has_offloading_enabled_on_upgrade', 'no' ),
1499 'report_issue_url' => add_query_arg(
1500 [
1501 'utm_source' => 'plugin',
1502 'utm_medium' => 'wp_dashboard',
1503 'utm_campaign' => 'report_issue',
1504 'contact_website' => home_url(),
1505 ],
1506 self::get_contact_base_link()
1507 ),
1508 'upgrade_url' => esc_url( self::get_upgrade_base_link() ),
1509 ];
1510 }
1511
1512 /**
1513 * Get the SPC banner data.
1514 *
1515 * @return array|null
1516 */
1517 private function get_spc_banner() {
1518 // User can't dismiss notice or install plugins.
1519 if ( ! current_user_can( 'manage_options' ) || ! current_user_can( 'install_plugins' ) ) {
1520 return null;
1521 }
1522
1523 // User has dismissed the notice.
1524 if ( get_option( self::SPC_BANNER_DISMISS_KEY ) === 'yes' ) {
1525 return null;
1526 }
1527
1528 // User has installed the pro plugin.
1529 if ( defined( 'SPC_PRO_PATH' ) ) {
1530 return null;
1531 }
1532
1533 // User has installed the plugin.
1534 if ( defined( 'SPC_PATH' ) ) {
1535 return null;
1536 }
1537
1538 return [
1539 'activate_url' => $this->get_spc_activate_url(),
1540 'status' => $this->get_spc_status(),
1541 'banner_dismiss_key' => self::SPC_BANNER_DISMISS_KEY,
1542 'i18n' => [
1543 'dismiss' => __( 'Dismiss', 'optimole-wp' ),
1544 'title' => __( 'Pair Optimole with Super Page Cache', 'optimole-wp' ),
1545 'byline' => __( 'Improve your Core Web Vitals with our recommended caching solution', 'optimole-wp' ),
1546 'features' => [
1547 __( 'Edge Caching (with Cloudflare free plan)', 'optimole-wp' ),
1548 __( 'Works with Optimole optimization', 'optimole-wp' ),
1549 __( 'Lightning Speed Disk Caching', 'optimole-wp' ),
1550 ],
1551 'cta' => __( 'Get Super Page Cache', 'optimole-wp' ),
1552 'activate' => __( 'Activate Super Page Cache', 'optimole-wp' ),
1553 'installing' => __( 'Installing Super Page Cache...', 'optimole-wp' ),
1554 'activating' => __( 'Activating Super Page Cache...', 'optimole-wp' ),
1555 'activated' => __( 'Super Page Cache is active!', 'optimole-wp' ),
1556 'error' => __( 'Something went wrong. Please refresh the page and try again.', 'optimole-wp' ),
1557 ],
1558 ];
1559 }
1560
1561 /**
1562 * Get the SPC activate URL.
1563 *
1564 * @return string
1565 */
1566 private function get_spc_activate_url() {
1567 return add_query_arg(
1568 [
1569 'plugin_status' => 'all',
1570 'paged' => 1,
1571 'action' => 'activate',
1572 'plugin' => rawurlencode( 'wp-cloudflare-page-cache/wp-cloudflare-super-page-cache.php' ),
1573 '_wpnonce' => wp_create_nonce( 'activate-plugin_wp-cloudflare-page-cache/wp-cloudflare-super-page-cache.php' ),
1574 ],
1575 admin_url( 'plugins.php' )
1576 );
1577 }
1578
1579 /**
1580 * Get the SPC status.
1581 *
1582 * @return string
1583 */
1584 private function get_spc_status() {
1585 if ( is_plugin_active( 'wp-cloudflare-page-cache/wp-cloudflare-super-page-cache.php' ) ) {
1586 return 'active';
1587 }
1588
1589 if ( file_exists( WP_PLUGIN_DIR . '/wp-cloudflare-page-cache/wp-cloudflare-super-page-cache.php' ) ) {
1590 return 'installed';
1591 }
1592
1593 return 'not-installed';
1594 }
1595
1596 /**
1597 * Get the black friday notices.
1598 *
1599 * @param non-empty-string $user_plan User plan.
1600 *
1601 * @return array<string, mixed> Notice data.
1602 */
1603 public function get_bf_notices( $user_plan ) {
1604
1605 $notices = [];
1606 $has_free_plan = 'free' === $user_plan;
1607
1608 if ( ! $has_free_plan ) {
1609 return $notices;
1610 }
1611
1612 /**
1613 * The black friday sale period flag.
1614 *
1615 * @var bool $is_black_friday Whether is black friday sale period or not.
1616 */
1617 $is_black_friday = apply_filters( 'themeisle_sdk_is_black_friday_sale', false );
1618
1619 if ( ! $is_black_friday ) {
1620 return $notices;
1621 }
1622
1623 /**
1624 * The current date.
1625 *
1626 * @var DateTime $now Current date.
1627 */
1628 $now = apply_filters( 'themeisle_sdk_current_date', new \DateTime( 'now' ) );
1629 $current_year = $now->format( 'Y' );
1630
1631 $black_friday_day = new \DateTime( "last Friday of November $current_year" );
1632 $sale_start = clone $black_friday_day;
1633 $sale_start->modify( 'monday this week' );
1634 $sale_start->setTime( 0, 0 );
1635
1636 $end = clone $sale_start;
1637 $end->modify( '+7 days' );
1638 $end->setTime( 23, 59, 59 );
1639
1640 $promo_code = 'BFCM2525';
1641
1642 $notices['sidebar'] = [
1643 'title' => sprintf(
1644 '<span class="text-promo-orange">%1$s:</span> %2$s - %3$s',
1645 __( 'Private Sale', 'optimole-wp' ),
1646 wp_date( 'j M', $sale_start->getTimestamp() ),
1647 wp_date( 'j M', $end->getTimestamp() )
1648 ),
1649 'subtitle' => sprintf(
1650 /* translators: %1$s is the promo code, %2$s is the discount amount ('25 off') */
1651 __( 'Use code %1$s for %2$s on yearly plans.', 'optimole-wp' ),
1652 '<span class="border-b border-0 border-white border-dashed text-promo-orange">' . $promo_code . '</span>',
1653 '<span class="text-promo-orange uppercase">' . __( '25% discount', 'optimole-wp' ) . '</span>'
1654 ),
1655 'cta_link' => esc_url_raw( tsdk_utmify( tsdk_translate_link( self::get_upgrade_base_link() ), 'bfcm25', 'sidebarnotice' ) ),
1656 ];
1657
1658 if ( get_option( self::BF_PROMO_DISMISS_KEY ) === 'yes' ) {
1659 return $notices;
1660 }
1661
1662 $message = sprintf(
1663 // translators: %1$s is the promo code, %2$s is the discount amount ('25% off')
1664 __( 'Use coupon code %1$s for an instant %2$s on Optimole yearly plans', 'optimole-wp' ),
1665 '<span class="border-b border-0 border-white border-dashed text-promo-orange">' . $promo_code . '</span>',
1666 '<span class="text-promo-orange uppercase">' . __( '25% discount', 'optimole-wp' ) . '</span>'
1667 );
1668 $cta_link = esc_url_raw( tsdk_utmify( self::get_upgrade_base_link(), 'bfcm25', 'notice' ) );
1669 $cta_text = __( 'Claim now', 'optimole-wp' );
1670
1671 $notices['banner'] = [
1672 /* translators: number of days left */
1673 'urgency' => sprintf( __( 'Hurry up! only %s left', 'optimole-wp' ), human_time_diff( $end->getTimestamp(), $now->getTimestamp() ) ),
1674 /* translators: private sale */
1675 'title' => sprintf( __( 'Black Friday %s', 'optimole-wp' ), '<span class="text-promo-orange">' . __( 'private sale', 'optimole-wp' ) . '</span>' ),
1676 'subtitle' => $message,
1677 'cta_text' => $cta_text,
1678 'cta_link' => $cta_link,
1679 'dismiss_key' => self::BF_PROMO_DISMISS_KEY,
1680 ];
1681
1682 return $notices;
1683 }
1684
1685 /**
1686 * Get all dashboard strings.
1687 *
1688 * @codeCoverageIgnore
1689 * @return array
1690 */
1691 private function get_dashboard_strings() {
1692 return [
1693 'optimole' => 'Optimole',
1694 'version' => OPTML_VERSION,
1695 'terms_menu' => __( 'Terms', 'optimole-wp' ),
1696 'privacy_menu' => __( 'Privacy', 'optimole-wp' ),
1697 'testdrive_menu' => __( 'Test Optimole', 'optimole-wp' ),
1698 'service_details' => __( 'Image optimization service', 'optimole-wp' ),
1699 'dashboard_title' => __( 'Image Optimization Overview', 'optimole-wp' ),
1700 'banner_title' => __( 'All images are automatically optimized!', 'optimole-wp' ),
1701 'banner_description' => __( 'Optimole is handling all your images in real-time with our CloudFront CDN (450+ locations worldwide)', 'optimole-wp' ),
1702 'quick_action_title' => __( 'Quick Actions', 'optimole-wp' ),
1703 'connect_btn' => __( 'Connect to Optimole', 'optimole-wp' ),
1704 'disconnect_btn' => __( 'Disconnect', 'optimole-wp' ),
1705 'select' => __( 'Select', 'optimole-wp' ),
1706 'your_domain' => __( 'your domain', 'optimole-wp' ),
1707 'add_api' => __( 'Add your API Key', 'optimole-wp' ),
1708 'your_api_key' => __( 'Your API Key', 'optimole-wp' ),
1709 'looking_for_api_key' => __( 'LOOKING FOR YOUR API KEY?', 'optimole-wp' ),
1710 'refresh_stats_cta' => __( 'Refresh Stats', 'optimole-wp' ),
1711 'updating_stats_cta' => __( 'UPDATING STATS', 'optimole-wp' ),
1712 'api_key_placeholder' => __( 'API Key', 'optimole-wp' ),
1713 'account_needed_heading' => __( 'Supercharge Your WordPress Images in 60 Seconds', 'optimole-wp' ),
1714 'account_needed_sub_heading' => __( 'Stop sacrificing image quality for page speed. Optimole delivers both.', 'optimole-wp' ),
1715 'account_needed_trust_badge' => __( 'TRUSTED BY 200,000+ HAPPY USERS', 'optimole-wp' ),
1716 'account_needed_setup_time' => __( 'Setup is instant - just click connect', 'optimole-wp' ),
1717 'account_needed_benefits_toggle' => __( 'See what you\'ll get', 'optimole-wp' ),
1718 'invalid_key' => __( 'Invalid API Key', 'optimole-wp' ),
1719 'keep_connected' => __( 'Ok, keep me connected', 'optimole-wp' ),
1720 'cloud_library' => __( 'Cloud Library', 'optimole-wp' ),
1721 'image_storage' => __( 'Image Storage', 'optimole-wp' ),
1722 'word' => __( 'word', 'optimole-wp' ),
1723 'path' => __( 'path', 'optimole-wp' ),
1724 'disconnect_title' => __( 'You are about to disconnect from the Optimole API', 'optimole-wp' ),
1725 'disconnect_desc' => __(
1726 'Please note that disconnecting your site from the Optimole API will impact your website performance.
1727 If you still want to disconnect click the button below.',
1728 'optimole-wp'
1729 ),
1730 'email_address_label' => __( 'Your email address', 'optimole-wp' ),
1731 'steps_connect_api_title' => __( 'Connect your account', 'optimole-wp' ),
1732 'register_btn' => __( 'Create & connect your account', 'optimole-wp' ),
1733 'secure_connection' => __( 'Secure connection - your data is protected', 'optimole-wp' ),
1734 'step_one_api_title' => __( 'Enter your API key.', 'optimole-wp' ),
1735 'optml_dashboard' => sprintf(
1736 /* translators: 1 is the opening anchor tag, 2 is the closing anchor tag */
1737 __( 'Get it from the %1$s Optimole Dashboard%2$s.', 'optimole-wp' ),
1738 '<a style="white-space:nowrap; text-decoration: underline !important;" href="' . esc_url( tsdk_translate_link( 'https://dashboard.optimole.com/', 'query' ) ) . '" target="_blank"> ',
1739 '<span style="text-decoration:none; font-size:15px; margin-top:2px;" class="dashicons dashicons-external"></span></a>'
1740 ),
1741 'steps_connect_api_desc' => sprintf(
1742 /* translators: 1 is the opening anchor tag, 2 is the closing anchor tag */
1743 __( 'Copy the API Key you have received via email or you can get it from %1$s Optimole dashboard%2$s. If your account has multiple domains select the one you want to use. <br/>', 'optimole-wp' ),
1744 '<a href="' . esc_url( tsdk_translate_link( 'https://dashboard.optimole.com/', 'query' ) ) . '" target="_blank"> ',
1745 '</a>'
1746 ),
1747 'api_exists' => __( 'I already have an API key.', 'optimole-wp' ),
1748 'back_to_register' => __( 'Register account', 'optimole-wp' ),
1749 'back_to_connect' => __( 'Go to previous step', 'optimole-wp' ),
1750 /* translators: 1 is starting anchor tag, 2 is ending anchor tag */
1751 'error_register' => sprintf( __( 'Error registering account. You can try again %1$shere%2$s', 'optimole-wp' ), '<a href="' . esc_url( tsdk_translate_link( 'https://dashboard.optimole.com/register', 'query' ) ) . '" target="_blank"> ', '</a>' ),
1752 'invalid_email' => __( 'Please use a valid email address.', 'optimole-wp' ),
1753 'connected' => __( 'CONNECTED', 'optimole-wp' ),
1754 'connecting' => __( 'CONNECTING', 'optimole-wp' ),
1755 'not_connected' => __( 'NOT CONNECTED', 'optimole-wp' ),
1756 'usage' => __( 'Monthly Usage', 'optimole-wp' ),
1757 'quota' => __( 'Monthly visits:', 'optimole-wp' ),
1758 'tooltip_visits_title' => __( 'What are visits?', 'optimole-wp' ),
1759 /* translators: 1 is the day when the visits reset, for example 1st of each month */
1760 'tooltip_visits_description' => __( 'Each visitor to your site is counted as a unique daily user, regardless of their actions or return visits on the same day. Your visit count resets on %s.', 'optimole-wp' ),
1761 'logged_in_as' => __( 'LOGGED IN AS', 'optimole-wp' ),
1762 'private_cdn_url' => __( 'IMAGES DOMAIN', 'optimole-wp' ),
1763 'existing_user' => __( 'Existing user?', 'optimole-wp' ),
1764 'notification_message_register' => __( 'We sent you the API Key in the email. Add it below to connect to Optimole.', 'optimole-wp' ),
1765 'premium_support' => __( 'Access our Premium Support', 'optimole-wp' ),
1766 'account_needed_title' => sprintf(
1767 /* translators: 1 is the link to optimole.com */
1768 __( 'Connect to Optimole\'s powerful image optimization service with a free API key from %s.', 'optimole-wp' ),
1769 ' <a href="' . esc_url( tsdk_translate_link( 'https://dashboard.optimole.com/register', 'query' ) ) . '" target="_blank">optimole.com</a>'
1770 ),
1771 'account_needed_subtitle_1' => sprintf(
1772 /* translators: 1 is the starting bold tag, 2 is the ending bold tag, 3 is the starting bold tag, 4 is the limit number, 5 is ending bold tag, 6 is the starting anchor tag for the docs link on how we count visits, 7 is the ending anchor tag. */
1773 __( '%1$sOptimize unlimited images%2$s for up to %3$s monthly %4$svisitors%5$s - completely FREE.', 'optimole-wp' ),
1774 '<strong>',
1775 '</strong>',
1776 number_format_i18n( 2000 ),
1777 '<a href="https://docs.optimole.com/article/1134-how-optimole-counts-the-number-of-visitors" target="_blank">',
1778 '</a>'
1779 ),
1780 'account_needed_subtitle_3' => sprintf(
1781 /* translators: 1 is the starting anchor tag for the docs link, 2 is the ending anchor tag. */
1782 __( 'Need help? %1$sGetting Started with Optimole%2$s', 'optimole-wp' ),
1783 '<a target="_blank" href="https://docs.optimole.com/article/1173-how-to-get-started-with-optimole-in-just-3-steps">',
1784 '</a>'
1785 ),
1786 'account_needed_subtitle_2' => sprintf(
1787 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */
1788 __(
1789 '%1$sInstant global delivery%2$s with CloudFront CDN - your images load 2-3x faster worldwide from 450+ locations.',
1790 'optimole-wp'
1791 ),
1792 '<strong>',
1793 '</strong>'
1794 ),
1795 'account_needed_subtitle_4' => sprintf(
1796 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */
1797 __(
1798 '%1$sAdaptive optimization%2$s that perfectly sizes images for every visitor\'s device and connection speed.',
1799 'optimole-wp'
1800 ),
1801 '<strong>',
1802 '</strong>'
1803 ),
1804 'account_needed_footer' => sprintf(
1805 /* translators: 1 is the number of users using Optimole */
1806 __( 'Trusted by more than %1$s happy users', 'optimole-wp' ),
1807 number_format_i18n( 200000, 0 )
1808 ),
1809 'account_connecting_title' => __( 'Connecting to Optimole', 'optimole-wp' ),
1810 'account_connecting_subtitle' => __( 'Sit tight while we connect you to the Dashboard', 'optimole-wp' ),
1811 'notice_just_activated' => ! $this->settings->is_connected() ?
1812 sprintf(
1813 /* translators: 1 starting bold tag, 2 is the ending bold tag */
1814 __( '%1$sImage optimisation is currently running.%2$s <br/> Your visitors will now view the best image for their device automatically, all served from the Optimole Cloud Service on the fly. You might see for the very first image request being redirected to the original URL while we do the optimization in the background. You can relax, we\'ll take it from here.', 'optimole-wp' ),
1815 '<strong>',
1816 '</strong>'
1817 )
1818 : '',
1819 'notice_api_not_working' => __(
1820 'It seems there is an issue with your WordPress configuration and the core REST API functionality is not available. This is crucial as Optimole relies on this functionality in order to work.<br/>
1821 The root cause might be either a security plugin which blocks this feature or some faulty server configuration which constrain this WordPress feature.You can try to disable any of the security plugins that you use in order to see if the issue persists or ask the hosting company to further investigate.',
1822 'optimole-wp'
1823 ),
1824 'notice_disabled_account' => sprintf(
1825 /* translators: 1 anchor tag to pricing, 2 is the ending endin anchor tag, 3 is the bold tag start, 4 ending bold tag, 5 new line tag */
1826 __( '%3$sYour account has been disabled due to exceeding quota.%4$s All images are being redirected to the original unoptimized URL. %5$sPlease %1$supgrade%2$s to re-activate the account.', 'optimole-wp' ),
1827 '<b><a href="' . esc_url( tsdk_translate_link( self::get_upgrade_base_link() ) ) . '">',
1828 '</a></b>',
1829 '<b>',
1830 '</b>',
1831 '<br>'
1832 ),
1833 'signup_terms' => sprintf(
1834 /* translators: 1 is starting anchor tag to terms, 2 is starting anchor tag to privacy link and 3 is ending anchor tag. */
1835 __( 'By signing up, you agree to our %1$sTerms of Service %3$s and %2$sPrivacy Policy %3$s.', 'optimole-wp' ),
1836 '<a href="' . esc_url( tsdk_translate_link( 'https://optimole.com/terms/' ) ) . '" target="_blank" >',
1837 '<a href="' . esc_url( tsdk_translate_link( 'https://optimole.com/privacy-policy/' ) ) . '" target="_blank">',
1838 '</a>'
1839 ),
1840 'dashboard_menu_item' => __( 'Dashboard', 'optimole-wp' ),
1841 'settings_menu_item' => __( 'Settings', 'optimole-wp' ),
1842 'help_menu_item' => __( 'Help', 'optimole-wp' ),
1843 'settings_watermark_menu_item' => __( 'Watermark', 'optimole-wp' ),
1844 'settings_exclusions_menu_item' => __( 'Exclusions', 'optimole-wp' ),
1845 'settings_resize_menu_item' => __( 'Resize', 'optimole-wp' ),
1846 'settings_compression_menu_item' => __( 'Compression', 'optimole-wp' ),
1847 'advanced_settings_menu_item' => __( 'Advanced', 'optimole-wp' ),
1848 'general_settings_menu_item' => __( 'General', 'optimole-wp' ),
1849 'lazyload_settings_menu_item' => __( 'Lazyload', 'optimole-wp' ),
1850 'watermarks_menu_item' => __( 'Watermark', 'optimole-wp' ),
1851 'conflicts_menu_item' => __( 'Possible Issues', 'optimole-wp' ),
1852 'conflicts' => [
1853 'title' => __( 'We might have some possible conflicts with the plugins that you use. In order to benefit from Optimole\'s full potential you will need to address this issues.', 'optimole-wp' ),
1854 'message' => __( 'Details', 'optimole-wp' ),
1855 'conflict_close' => __( 'I\'ve done this.', 'optimole-wp' ),
1856 'no_conflicts_found' => __( 'No conflicts found. We are all peachy now. 🍑', 'optimole-wp' ),
1857 ],
1858 'upgrade' => [
1859 'title' => __( 'Upgrade', 'optimole-wp' ),
1860 'title_long' => __( 'Upgrade to Optimole Pro', 'optimole-wp' ),
1861 'reason_1' => __( 'Priority & Live Chat support', 'optimole-wp' ),
1862 'reason_2' => __( 'Extend visits limit', 'optimole-wp' ),
1863 'reason_3' => __( 'Custom domain', 'optimole-wp' ),
1864 'reason_4' => __( 'Site audit', 'optimole-wp' ),
1865 'cta' => __( 'View plans', 'optimole-wp' ),
1866 ],
1867 'neve' => [
1868 'is_active' => defined( 'NEVE_VERSION' ) ? 'yes' : 'no',
1869 'byline' => __( 'Fast, perfomance built-in WordPress theme.', 'optimole-wp' ),
1870 'reason_1' => __( 'Lightweight, 25kB in page-weight.', 'optimole-wp' ),
1871 'reason_2' => __( '100+ Starter Sites available.', 'optimole-wp' ),
1872 'reason_3' => __( 'AMP/Mobile ready.', 'optimole-wp' ),
1873 'reason_4' => __( 'Lots of customizations options.', 'optimole-wp' ),
1874 'reason_5' => __( 'Fully compatible with Optimole.', 'optimole-wp' ),
1875 ],
1876 'metrics' => [
1877 'metricsTitle1' => __( 'Images optimized', 'optimole-wp' ),
1878 'metricsSubtitle1' => __( 'Since plugin activation', 'optimole-wp' ),
1879 'metricsTitle2' => __( 'Saved File Size', 'optimole-wp' ),
1880 'metricsSubtitle2' => __( 'Latest 10 images', 'optimole-wp' ),
1881 'metricsTitle3' => __( 'Average Compression', 'optimole-wp' ),
1882 'metricsSubtitle3' => __( 'Average Reduction', 'optimole-wp' ),
1883 'metricsTitle4' => __( 'CDN Traffic', 'optimole-wp' ),
1884 'metricsSubtitle4' => __( 'This month', 'optimole-wp' ),
1885 'metricsTitle5' => __( 'Offloaded images', 'optimole-wp' ),
1886 'metricsSubtitle5' => __( 'Offloaded to cloud', 'optimole-wp' ),
1887 // translators: is used as singular when the number of images is 1 for a unit label.
1888 'image' => __( 'image', 'optimole-wp' ),
1889 // translators: is used as plural when the number of images is more than 1 for a unit label.
1890 'images' => __( 'images', 'optimole-wp' ),
1891 'view_analytics' => __( 'View Analytics', 'optimole-wp' ),
1892 'adjust_compression' => __( 'Adjust Compression', 'optimole-wp' ),
1893 'manage_offloading' => __( 'Manage image offloading', 'optimole-wp' ),
1894 ],
1895 'quick_actions' => [
1896 'speed_test_title' => __( 'Test Your Site Speed', 'optimole-wp' ),
1897 'speed_test_desc' => __( 'Run speed test', 'optimole-wp' ),
1898 'speed_test_link' => add_query_arg( 'url', get_site_url(), 'https://pagespeed.web.dev/analysis' ),
1899 'clear_cache_images' => __( 'Clear Cached Images', 'optimole-wp' ),
1900 'clear_cache' => __( 'Clear cache', 'optimole-wp' ),
1901 'offload_images' => __( 'Enable Offload Images', 'optimole-wp' ),
1902 'offload_images_desc' => __( 'Free up space on your server', 'optimole-wp' ),
1903 'advance_settings' => __( 'Advanced Settings', 'optimole-wp' ),
1904 'configure_settings' => __( 'Configure settings', 'optimole-wp' ),
1905 ],
1906 'options_strings' => [
1907 'watermark_media_desc' => __( 'Protect your brand by adding a watermark to your images. Configure placement, opacity, and rules directly in your Optimole Dashboard.', 'optimole-wp' ),
1908 'watermark_media_title' => __( 'Watermarks', 'optimole-wp' ),
1909 'learn_more' => __( 'Learn more', 'optimole-wp' ),
1910 'open_optimole_dashboard' => __( 'Open Optimole Dashboard', 'optimole-wp' ),
1911 'watermark_footer' => __( 'Watermark rules and exclusions are fully managed in your Optimole Dashboard.', 'optimole-wp' ),
1912 'watermark_info_1' => __( 'Choose from multiple watermark positions and set opacity.', 'optimole-wp' ),
1913 'watermark_info_2' => __( 'Set different watermarks for different image sizes.', 'optimole-wp' ),
1914 'watermark_info_3' => __( 'Create rule-based targeting by filename, page URL, class, and more.', 'optimole-wp' ),
1915 'compression_mode' => __( 'Compression Mode', 'optimole-wp' ),
1916 'compression_mode_speed_optimized' => __( 'Speed Optimized', 'optimole-wp' ),
1917 'compression_mode_quality_optimized' => __( 'Quality Optimized', 'optimole-wp' ),
1918 'compression_mode_custom' => __( 'Custom', 'optimole-wp' ),
1919 'compression_mode_speed_optimized_desc' => __( 'Prioritizes faster loading and smaller image sizes by applying a balanced level of lossy compression. This setting reduces file size significantly without severely degrading visual quality.', 'optimole-wp' ),
1920 'compression_mode_quality_optimized_desc' => __( 'Delivers high-quality images by applying lossless or near-lossless optimization. Ensures images retain their sharpness and details while still benefiting from moderate file size reduction.', 'optimole-wp' ),
1921 'compression_mode_custom_desc' => __( 'Customize each setting individually for complete control over image compression.', 'optimole-wp' ),
1922
1923 'best_format_title' => __( 'Automatic Best Image Format Selection', 'optimole-wp' ),
1924 'best_format_desc' => sprintf(
1925 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1926 __( 'When enabled, Optimole chooses the best format for your images, balancing quality with speed. It tries options like AVIF and WebP to keep visuals sharp and pages fast, though uncached images may take a bit longer to process. %1$sLearn more%2$s.', 'optimole-wp' ),
1927 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1942-best-format">',
1928 '</a>'
1929 ),
1930 'add_filter' => __( 'Add filter', 'optimole-wp' ),
1931 'add_site' => __( 'Add site', 'optimole-wp' ),
1932 'admin_bar_desc' => __( 'Show in the WordPress admin bar the available quota from Optimole service.', 'optimole-wp' ),
1933 'auto_q_title' => __( 'Auto', 'optimole-wp' ),
1934 'cache_desc' => sprintf(
1935 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1936 __( 'Clears all Optimole’s cached resources (images, JS, CSS). Useful if you made changes to your images and don\'t see those applying on your site. %1$sLearn more%2$s', 'optimole-wp' ),
1937 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1941-clear-cached-resources">',
1938 '</a>'
1939 ),
1940 'cache_title' => __( 'Clear Cached Resources', 'optimole-wp' ),
1941 'clear_cache_notice' => __( 'Clearing cached resources will re-optimize the images and might affect the site performance for a few minutes.', 'optimole-wp' ),
1942 'image_size_notice' => sprintf(
1943 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1944 __( 'Use this option if you notice images are not cropped correctly after using Optimole. Add the affected image sizes here to automatically adjust and correct their cropping for optimal display. %1$sLearn more%2$s', 'optimole-wp' ),
1945 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1947-add-new-image-crop-size">',
1946 '</a>'
1947 ),
1948 'clear_cache_images' => __( 'Clear cached images', 'optimole-wp' ),
1949 'clear_cache_assets' => __( 'Clear cached CSS & JS', 'optimole-wp' ),
1950 'connect_step_0' => __( 'Connecting your site to the Optimole service.', 'optimole-wp' ),
1951 'connect_step_1' => __( 'Checking for possible conflicts.', 'optimole-wp' ),
1952 'connect_step_2' => __( 'Inspecting the images from your site.', 'optimole-wp' ),
1953 'connect_step_3' => __( 'All done, Optimole is currently optimizing your site.', 'optimole-wp' ),
1954 'disabled' => __( 'Disabled', 'optimole-wp' ),
1955 'enable_avif_title' => __( 'AVIF Image Support', 'optimole-wp' ),
1956 'enable_avif_desc' => sprintf(
1957 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1958 __( 'Enable this to automatically convert images to the AVIF format on browsers that support it. This format provides quality images with reduced file sizes, and faster webpage loading. %1$sLearn more%2$s', 'optimole-wp' ),
1959 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1943-avif-conversion">',
1960 '</a>'
1961 ),
1962 'enable_bg_lazyload_desc' => sprintf(
1963 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1964 __( 'Apply lazy loading to CSS background images. The toggle below enables it globally. The selector list is optional and only needed to extend coverage if certain elements are missed. %1$sLearn more%2$s', 'optimole-wp' ),
1965 '<a class="inline-block text-purple-gray underline" target="_blank" href="https://docs.optimole.com/article/1169-how-to-enable-the-background-lazyload-feature-for-certain-background-images">',
1966 '</a>'
1967 ),
1968 'enable_bg_lazyload_title' => __( 'CSS Background Lazy Load', 'optimole-wp' ),
1969 'enable_video_lazyload_desc' => __( 'Lazy load embedded videos and iframe content', 'optimole-wp' ),
1970 'enable_video_lazyload_title' => __( 'Video & iframes', 'optimole-wp' ),
1971 'enable_noscript_desc' => sprintf(
1972 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1973 __( 'Enables fallback images for browsers that can\'t handle JavaScript-based lazy loading or related features. Disabling it may resolve conflicts with other plugins or configurations and decrease HTML page size. %1$sLearn more%2$s', 'optimole-wp' ),
1974 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1959-noscript-tag">',
1975 '</a>'
1976 ),
1977 // translators: %s is the name of the html tag (e.g: <noscript> );
1978 'enable_noscript_title' => sprintf( __( 'Enable %s fallback', 'optimole-wp' ), '<custom_component/>' ),
1979 'enable_gif_replace_title' => __( 'GIF to Video Conversion', 'optimole-wp' ),
1980 'enable_offload_media_title' => __( 'Store Your Images in Optimole Cloud', 'optimole-wp' ),
1981 'enable_offload_media_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Free up space on your server by transferring your images to Optimole Cloud; you can transfer them back anytime. Once moved, the images will still be visible in the Media Library and can be used as before. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1967-store-your-images-in-optimole-cloud">', '</a>' ),
1982 'enable_cloud_images_title' => __( 'Unified Image Access', 'optimole-wp' ),
1983 'enable_cloud_images_desc' => sprintf(
1984 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1985 __( 'Enable this setting to access all your Optimole images, including those from other websites connected to your Optimole account, directly on this site. They will be available for browsing in the Cloud Library tab. %1$sLearn more%2$s', 'optimole-wp' ),
1986 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1323-cloud-library-browsing">',
1987 '</a>'
1988 ),
1989 'enable_image_replace' => __( 'Enable Optimole Image Handling', 'optimole-wp' ),
1990 'enable_lazyload_placeholder_desc' => sprintf(
1991 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
1992 __( 'Enable this to use a generic transparent placeholder instead of the blurry images during lazy loading. %1$sLearn more%2$s', 'optimole-wp' ),
1993 '<a class="inline-block underline text-white" target=”_blank” href="https://docs.optimole.com/article/1192-lazy-load-generic-placeholder">',
1994 '</a>'
1995 ),
1996
1997 'lazyload_behaviour_title' => __( 'Loading Method', 'optimole-wp' ),
1998 'lazyload_behaviour_desc' => sprintf(
1999 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2000 __( 'Choose how Optimole will handle lazy loading for images on your website. %1$sLearn more%2$s', 'optimole-wp' ),
2001 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1958-lazy-loading-behaviour">',
2002 '</a>'
2003 ),
2004 'lazyload_behaviour_all' => __( 'Lazy Load All Images', 'optimole-wp' ),
2005 'lazyload_behaviour_all_desc' => __( 'All images will use lazy loading regardless of position.', 'optimole-wp' ),
2006 'lazyload_behaviour_viewport' => __( 'Skip images above the fold', 'optimole-wp' ),
2007 'lazyload_behaviour_viewport_desc' => __( 'Automatically detects and immediately loads images visible in the initial viewport. Detection is done with a lightweight client-side script that identifies what\'s visible on each user\'s screen. All other images will lazy load.', 'optimole-wp' ),
2008 'lazyload_behaviour_fixed' => __( 'Skip lazy loading for first images', 'optimole-wp' ),
2009 'lazyload_behaviour_fixed_desc' => __( 'Indicate how many images at the top of each page should bypass lazy loading, ensuring they\'re instantly visible.', 'optimole-wp' ),
2010 'enable_lazyload_placeholder_title' => __( 'Enable generic placeholder color', 'optimole-wp' ),
2011 'enable_network_opt_desc' => sprintf(
2012 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2013 __( 'When enabled, Optimole will automatically reduce the image quality when it detects a slower network, making your images load faster on low-speed internet connections. %1$sLearn more%2$s', 'optimole-wp' ),
2014 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1945-network-based-optimizations">',
2015 '</a>'
2016 ),
2017 'enable_network_opt_title' => __( 'Network-based Optimizations', 'optimole-wp' ),
2018 'enable_resize_smart_desc' => sprintf(
2019 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2020 __( 'When enabled, Optimole automatically detects the most interesting or important part of your images. When pictures are resized or cropped, this feature ensures the focus stays on the most interesting part of the picture. %1$sLearn more%2$s', 'optimole-wp' ),
2021 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1871-how-to-use-the-smart-cropping-in-optimole">',
2022 '</a>'
2023 ),
2024 'enable_resize_smart_title' => __( 'Smart Cropping', 'optimole-wp' ),
2025 'enable_retina_desc' => sprintf(
2026 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2027 __( 'Optimizes images for Retina (high-DPI) screens for sharper results. Always enabled for images under 150px wide. %1$sLearn more%2$s', 'optimole-wp' ),
2028 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1391-what-is-a-retina-image">',
2029 '</a>'
2030 ),
2031 'enable_retina_title' => __( 'Retina Quality', 'optimole-wp' ),
2032 'enable_limit_dimensions_desc' => sprintf(
2033 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2034 __( 'Define the max width or height limits for images on your website. Larger images will be automatically adjusted to fit within these parameters while preserving their original aspect ratio. %1$sLearn more%2$s', 'optimole-wp' ),
2035 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1946-limit-image-sizes">',
2036 '</a>'
2037 ),
2038 'enable_limit_dimensions_title' => __( 'Limit Image Sizes', 'optimole-wp' ),
2039 'enable_limit_dimensions_notice' => __( 'When you enable this feature to define a max width or height for image resizing, please note that DPR (retina) images will be disabled. This is done to ensure consistency in image dimensions across your website. Although this may result in slightly lower image quality for high-resolution displays, it will help maintain uniform image sizes, improving your website\'s overall layout and potentially boosting performance.', 'optimole-wp' ),
2040 'enable_badge_title' => __( 'Enable Optimole Badge', 'optimole-wp' ),
2041 'enable_badge_settings' => __( 'Badge settings', 'optimole-wp' ),
2042 'enable_badge_show_icon' => __( 'Show only Optimole icon', 'optimole-wp' ),
2043 'enable_badge_position' => __( 'Badge Position', 'optimole-wp' ),
2044 'badge_position_text_1' => __( 'Left', 'optimole-wp' ),
2045 'badge_position_text_2' => __( 'Right', 'optimole-wp' ),
2046 'enable_badge_description' => sprintf(
2047 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2048 __( 'Get 20.000 more visits for free by enabling the Optimole badge on your websites. %1$sLearn more%2$s', 'optimole-wp' ),
2049 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1940-optimole-badge">',
2050 '</a>'
2051 ),
2052 'image_sizes_title' => __( 'Your cropped image sizes', 'optimole-wp' ),
2053 'enabled' => __( 'Enabled', 'optimole-wp' ),
2054 'exclude_class_desc' => sprintf(
2055 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */
2056 __( '%1$sImage tag%2$s contains class', 'optimole-wp' ),
2057 '<strong>',
2058 '</strong>'
2059 ),
2060 'exclude_ext_desc' => sprintf(
2061 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */
2062 __( '%1$sImage extension%2$s is', 'optimole-wp' ),
2063 '<strong>',
2064 '</strong>'
2065 ),
2066 'exclude_filename_desc' => sprintf(
2067 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%1$sImage filename%2$s contains', 'optimole-wp' ),
2068 '<strong>',
2069 '</strong>'
2070 ),
2071 'exclude_desc_optimize' => sprintf(
2072 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2073 __( 'Here you can define exceptions, in case you don\'t want some images to be optimised. %1$sLearn more%2$s', 'optimole-wp' ),
2074 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1191-exclude-from-optimizing-or-lazy-loading">',
2075 '</a>'
2076 ),
2077 'exclude_title_lazyload' => __( 'Don\'t lazy-load images if', 'optimole-wp' ),
2078 'exclude_desc_lazyload' => sprintf(
2079 /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */
2080 __( 'Define exceptions, in case you don\'t want the lazy-load to be active on certain images. %1$sLearn more%2$s', 'optimole-wp' ),
2081 '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1191-exclude-from-optimizing-or-lazy-loading">',
2082 '</a>'
2083 ),
2084 'exclude_title_optimize' => __( 'Don\'t optimize and don\'t lazy-load images if', 'optimole-wp' ),
2085 'exclude_url_desc' => sprintf(
2086 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%1$sPage url%2$s contains', 'optimole-wp' ),
2087 '<strong>',
2088 '</strong>'
2089 ),
2090 'name' => sprintf(
2091 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%1$sName: %2$s', 'optimole-wp' ),
2092 '<strong>',
2093 '</strong>'
2094 ),
2095 'cropped' => __( 'cropped', 'optimole-wp' ),
2096 'exclude_url_match_desc' => sprintf(
2097 /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%1$sPage url%2$s matches', 'optimole-wp' ),
2098 '<strong>',
2099 '</strong>'
2100 ),
2101 'exclude_first' => __( 'Exclude first', 'optimole-wp' ),
2102 'images' => __( 'images', 'optimole-wp' ),
2103 'exclude_first_images_title' => __( 'Bypass Lazy Load for First Images', 'optimole-wp' ),
2104 'exclude_first_images_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Indicate how many images at the top of each page should bypass lazy loading, ensuring they’re instantly visible. Enter 0 to not exclude any images from the lazy loading process. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1948-bypass-lazy-load-for-first-images">', '</a>' ),
2105 'filter_class' => __( 'Image class', 'optimole-wp' ),
2106 'filter_ext' => __( 'Image extension', 'optimole-wp' ),
2107 'filter_filename' => __( 'Image filename', 'optimole-wp' ),
2108 'filter_operator_contains' => __( 'contains', 'optimole-wp' ),
2109 'filter_operator_matches' => __( 'matches', 'optimole-wp' ),
2110 'filter_operator_is' => __( 'is', 'optimole-wp' ),
2111 'filter_url' => __( 'Page URL', 'optimole-wp' ),
2112 'filter_helper' => __( 'For homepage use `home` keyword.', 'optimole-wp' ),
2113 'gif_replacer_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Enable this to automatically convert GIF images to Video files (MP4 and WebM). %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1171-gif-to-video-conversion">', '</a>' ),
2114 'height_field' => __( 'Height', 'optimole-wp' ),
2115 'add_image_size_button' => __( 'Add size', 'optimole-wp' ),
2116 'add_image_size_desc' => __( 'Add New Image Crop Size', 'optimole-wp' ),
2117 'here' => __( ' here.', 'optimole-wp' ),
2118 'hide' => __( 'Hide', 'optimole-wp' ),
2119 'high_q_title' => __( 'High', 'optimole-wp' ),
2120 'image_1_label' => __( 'Original', 'optimole-wp' ),
2121 'image_2_label' => __( 'Optimized', 'optimole-wp' ),
2122 'lazyload_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Images load only when they\'re about to enter the viewport. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1948-bypass-lazy-load-for-first-images">', '</a>' ),
2123 'filter_length_error' => __( 'The filter should be at least 3 characters long.', 'optimole-wp' ),
2124 'scale_desc' => __( 'Automatically resize the images based on device and viewport', 'optimole-wp' ),
2125 'low_q_title' => __( 'Low', 'optimole-wp' ),
2126 'medium_q_title' => __( 'Medium', 'optimole-wp' ),
2127 'no_images_found' => __( 'You dont have any images in your Media Library. Add one and check how the Optimole will perform.', 'optimole-wp' ),
2128 'native_desc' => __( 'Uses the browser\'s built-in lazy loading feature. Enabling this will disable the auto scale.', 'optimole-wp' ),
2129 'option_saved' => __( 'Option saved.', 'optimole-wp' ),
2130 'ml_quality_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Optimole ML algorithms will predict the optimal image quality to get the smallest possible size with minimum perceived quality losses. When disabled, you can control the quality manually. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1016-what-is-the-difference-between-the-auto-high-medium-low-compression-levels">', '</a>' ),
2131 'quality_desc' => __( 'Lower image quality might boost your loading speed by lowering the size. However, the low image quality may negatively impact the visual appearance of the images. Try experimenting with the setting, then click the View sample image link to see what option works best for you.', 'optimole-wp' ),
2132 'quality_selected_value' => __( 'Selected value', 'optimole-wp' ),
2133 'quality_slider_desc' => __( 'See one sample image which will help you choose the right quality of the compression.', 'optimole-wp' ),
2134 'quality_title' => __( 'Auto Quality Powered by ML(Machine Learning)', 'optimole-wp' ),
2135 'strip_meta_title' => __( 'Strip Image Metadata', 'optimole-wp' ),
2136 'strip_meta_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Removes extra information from images, including EXIF and IPTC data (like camera settings and copyright info). This makes the pictures lighter and helps your website load faster. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1944-strip-image-metadata">', '</a>' ),
2137 'replacer_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'When enabled, Optimole will manage, optimize, and serve all the images on your website. If disabled, optimization, lazy loading, and other features will no longer be available. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1218-how-to-turn-off-image-replacement-in-optimoles-wordpress-plugin">', '</a>' ),
2138 'sample_image_loading' => __( 'Loading a sample image.', 'optimole-wp' ),
2139 'save_changes' => __( 'Save changes', 'optimole-wp' ),
2140 'show' => __( 'Show', 'optimole-wp' ),
2141 'selected_sites_title' => __( 'CURRENTLY SHOWING IMAGES FROM', 'optimole-wp' ),
2142 'selected_sites_desc' => __( 'Site:', 'optimole-wp' ),
2143 'selected_all_sites_desc' => __( 'Currently viewing images from all sites', 'optimole-wp' ),
2144 'select_all_sites_desc' => __( 'View images from all sites', 'optimole-wp' ),
2145 'select_site' => __( 'Select a website', 'optimole-wp' ),
2146 'cloud_site_title' => __( 'Show images only from these sites:', 'optimole-wp' ),
2147 'cloud_site_desc' => __( 'Browse images only from the specified websites. Otherwise, images from all websites will appear in the library.', 'optimole-wp' ),
2148 'toggle_ab_item' => __( 'Admin bar status', 'optimole-wp' ),
2149 'toggle_lazyload' => __( 'Enable Lazy Loading & Scaling', 'optimole-wp' ),
2150 'toggle_scale' => __( 'Smart Image Scaling', 'optimole-wp' ),
2151 'toggle_native' => __( 'Native Browser Loading', 'optimole-wp' ),
2152 'on_toggle' => __( 'On', 'optimole-wp' ),
2153 'off_toggle' => __( 'Off', 'optimole-wp' ),
2154 'view_sample_image' => __( 'View sample image', 'optimole-wp' ),
2155 'watch_placeholder_lazyload' => __( 'Optional selectors to extend coverage (one per line or comma-separated)', 'optimole-wp' ),
2156 // translators: %s is the example selector list.
2157 'watch_placeholder_lazyload_example' => sprintf( __( 'Example: %s', 'optimole-wp' ), '.hero-bg, #banner-image, .lazy-bg, .footer-bg' ),
2158 'watch_desc_lazyload' => __( 'If everything is covered out of the box, leave this empty.', 'optimole-wp' ),
2159 'smart_loading_title' => __( 'Smart Loading', 'optimole-wp' ),
2160 'smart_loading_desc' => __( 'JavaScript-driven with advanced controls', 'optimole-wp' ),
2161 'browser_native_lazy' => __( 'Uses the browser\'s built-in lazy loading feature', 'optimole-wp' ),
2162 // translators: viewport is the visible area of a web page on a display device.
2163 'viewport_detection' => __( 'Viewport detection', 'optimole-wp' ),
2164 // translators: set the colors for the placeholder image.
2165 'placeholders_color' => __( 'Placeholders', 'optimole-wp' ),
2166 // translators: it can handle many images without slowing down the site.
2167 'auto_scaling' => __( 'Auto Scaling', 'optimole-wp' ),
2168 // translators: it uses the browser's built-in lazy loading feature without any additional scripts.
2169 'lightweight_native' => __( 'Lightweight', 'optimole-wp' ),
2170
2171 'watch_title_lazyload' => __( 'Extend CSS Background Images', 'optimole-wp' ),
2172 'width_field' => __( 'Width', 'optimole-wp' ),
2173 'crop' => __( 'crop', 'optimole-wp' ),
2174 'toggle_cdn' => __( 'Serve CSS & JS Through Optimole', 'optimole-wp' ),
2175 'cdn_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'When enabled, Optimole will optimize your CSS and JS files and, if they contain images, the images as well, then deliver them via the CDN for faster webpage loading. %1$sLearn more%2$s', 'optimole-wp' ), '<a class="inline-block text-purple-gray underline" target=”_blank” href="https://docs.optimole.com/article/1966-serve-css-js-through-optimole">', '</a>' ),
2176 'enable_css_minify_title' => __( 'Minify CSS files', 'optimole-wp' ),
2177 'css_minify_desc' => __( 'Once Optimole will serve your CSS files, it will also minify the files and serve them via CDN.', 'optimole-wp' ),
2178 'enable_js_minify_title' => __( 'Minify JS files', 'optimole-wp' ),
2179 'js_minify_desc' => __( 'Once Optimole will serve your JS files, it will also minify the files and serve them via CDN.', 'optimole-wp' ),
2180 'sync_title' => __( 'Offload Existing Images', 'optimole-wp' ),
2181 'rollback_title' => __( 'Restore Offloaded Images', 'optimole-wp' ),
2182 'sync_desc' => __( 'Right now all the new images uploaded to your site are moved automatically to Optimole Cloud. In order to offload the existing ones, please click Sync images and wait for the process to finish. You can rollback anytime.', 'optimole-wp' ),
2183 'rollback_desc' => __( 'Pull all the offloaded images to Optimole Cloud back to your server.', 'optimole-wp' ),
2184 'sync_media' => __( 'Sync images', 'optimole-wp' ),
2185 'rollback_media' => __( 'Rollback images', 'optimole-wp' ),
2186 'sync_media_progress' => __( 'Moving your images to Optimole...', 'optimole-wp' ),
2187 'estimated_time' => __( 'Estimated time remaining', 'optimole-wp' ),
2188 'calculating_estimated_time' => __( 'We are currently calculating the estimated time for this job...', 'optimole-wp' ),
2189 'images_processing' => __( 'We are currently processing your images in the background. Leaving the page won\'t stop the process.', 'optimole-wp' ),
2190 'active_optimize_exclusions' => __( 'Active Optimizing Exclusions', 'optimole-wp' ),
2191 'active_lazyload_exclusions' => __( 'Active Lazy-loading Exclusions', 'optimole-wp' ),
2192 'minutes' => __( 'minutes', 'optimole-wp' ),
2193 'stop' => __( 'Stop', 'optimole-wp' ),
2194 'show_logs' => __( 'Show Logs', 'optimole-wp' ),
2195 'hide_logs' => __( 'Hide Logs', 'optimole-wp' ),
2196 'view_logs' => __( 'View Full Logs', 'optimole-wp' ),
2197 'rollback_media_progress' => __( 'Moving images into your media library...', 'optimole-wp' ),
2198 'rollback_media_error' => __( 'An unexpected error occured while pulling the offloaded back to your site', 'optimole-wp' ),
2199 'rollback_media_error_desc' => __( 'You can try again to pull back the rest of the images.', 'optimole-wp' ),
2200 'remove_notice' => __( 'Remove notice', 'optimole-wp' ),
2201 'sync_media_error' => __( 'An unexpected error occured while offloading all existing images from your site to Optimole', 'optimole-wp' ),
2202 'sync_media_link' => __( 'The selected images have been offloaded to our servers, you can check them', 'optimole-wp' ),
2203 'rollback_media_link' => __( 'The selected images have been restored to your server, you can check them', 'optimole-wp' ),
2204 'sync_media_error_desc' => __( 'You can try again to offload the rest of the images to Optimole.', 'optimole-wp' ),
2205 'offload_disable_warning_title' => __( 'Important! Please read carefully', 'optimole-wp' ),
2206 'offload_disable_warning_desc' => __( 'If you turn off this option, you will not be able to see the images in the Media Library without restoring the images first. Do you want to restore the images to your site upon turning off the option?', 'optimole-wp' ),
2207 'offload_enable_info_desc' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'You are not required to use the offload functionality for the plugin to work, use it if you want to save on hosting space. %1$s More details%2$s', 'optimole-wp' ), '<a style="white-space: nowrap;" target=”_blank” href="https://docs.optimole.com/article/1323-cloud-library-browsing">', '<span style="font-size:15px; margin-top:2px;" class="dashicons dashicons-external"></span></a>' ),
2208 'offload_conflicts_part_1' => __( 'We have detected the following plugins that conflict with the offload features:', 'optimole-wp' ),
2209 'offload_conflicts_part_2' => __( 'Please disable those plugins temporarily in order for Optimole to rollback the images to your site.', 'optimole-wp' ),
2210 'offloading_success' => sprintf( /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%s Your images are now stored in Optimole Cloud.', 'optimole-wp' ), '<strong>' . __( 'Transfer Complete.', 'optimole-wp' ) . '</strong>' ),
2211 'rollback_success' => sprintf( /* translators: 1 is the starting bold tag, 2 is the ending bold tag */ __( '%s Your images have been restored to your website.', 'optimole-wp' ), '<strong>' . __( 'Transfer Complete.', 'optimole-wp' ) . '</strong>' ),
2212 'offloading_radio_legend' => __( 'Where your images are stored', 'optimole-wp' ),
2213 'offload_radio_option_rollback_title' => __( 'Optimole Cloud and your website', 'optimole-wp' ),
2214 'offload_radio_option_rollback_desc' => __( 'Images are stored in both the local WordPress media library and Optimole Cloud.', 'optimole-wp' ),
2215 'offload_radio_option_offload_title' => __( 'Optimole Cloud only', 'optimole-wp' ),
2216 'offload_radio_option_offload_desc' => __( 'Images are stored only in Optimole Cloud, allowing you to save space on your server. When enabled, any new images you upload in the Media Library will be automatically transferred to Optimole Cloud.', 'optimole-wp' ),
2217 'offload_limit_reached' => sprintf( /* translators: Current limit of offloaded images */ __( 'You have reached the maximum offloading limit of %s images. To increase the offload limit and for more information, contact our support.', 'optimole-wp' ), '<strong>#offload_limit#</strong>' ),
2218 'select' => __( 'Please select one ...', 'optimole-wp' ),
2219 'yes' => __( 'Restore images after disabling', 'optimole-wp' ),
2220 'no' => __( 'Do not restore images after disabling', 'optimole-wp' ),
2221 'lazyload_placeholder_color' => __( 'Placeholder Color', 'optimole-wp' ),
2222 'clear' => __( 'Clear', 'optimole-wp' ),
2223 'settings_saved' => __( 'Settings saved', 'optimole-wp' ),
2224 'settings_saved_error' => __( 'Error saving settings. Please reload the page and try again.', 'optimole-wp' ),
2225 'cache_cleared' => __( 'Cache cleared', 'optimole-wp' ),
2226 'cache_cleared_error' => __( 'Error clearing cache. Please reload the page and try again.', 'optimole-wp' ),
2227 'offloading_start_title' => __( 'Transfer your images to Optimole', 'optimole-wp' ),
2228 'offloading_start_description' => __( 'This process will transfer and store your images in Optimole Cloud and may take a while, depending on the number of images.', 'optimole-wp' ),
2229 'offloading_start_action' => __( 'Transfer to Optimole Cloud', 'optimole-wp' ),
2230 'offloading_stop_title' => __( 'Are you sure?', 'optimole-wp' ),
2231 'offloading_stop_description' => __( 'This will halt the ongoing process. To retrieve images transferred from the Optimole Cloud, use the Rollback option.', 'optimole-wp' ),
2232 'offloading_stop_action' => __( 'Cancel the transfer to Optimole', 'optimole-wp' ),
2233 'rollback_start_title' => __( 'Transfer back all images to your site', 'optimole-wp' ),
2234 'rollback_start_description' => __( 'This process will transfer back all images from Optimole to your website and may take a while, depending on the number of images.', 'optimole-wp' ),
2235 'rollback_start_action' => __( 'Transfer back from Optimole', 'optimole-wp' ),
2236 'rollback_stop_title' => __( 'Are you sure?', 'optimole-wp' ),
2237 'rollback_stop_description' => __( 'Canceling will halt the ongoing process, and any remaining images will stay in the Optimole Cloud. To transfer images to the Optimole Cloud, use the Offloading option.', 'optimole-wp' ),
2238 'rollback_stop_action' => __( 'Cancel the transfer from Optimole', 'optimole-wp' ),
2239 'cloud_library_btn_text' => __( 'Go to Cloud Library', 'optimole-wp' ),
2240 'cloud_library_btn_link' => add_query_arg( 'page', 'optimole-dam', admin_url( 'admin.php' ) ),
2241 'exceed_plan_quota_notice_title' => __( 'Your site has already reached over 50% of your monthly visits limit within just two weeks.', 'optimole-wp' ),
2242 'exceed_plan_quota_notice_description' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'Based on this trend, you are likely to exceed your free quota before the month ends. To avoid any disruption in service, we strongly recommend %1$supgrading%2$s your plan or waiting until your traffic stabilizes before offloading your images. Do you still wish to proceed?', 'optimole-wp' ), '<a style="white-space: nowrap;" target=”_blank” href="https://dashboard.optimole.com/settings/billing/">', '</a>' ),
2243 'exceed_plan_quota_notice_start_action' => __( 'Yes, Transfer to Optimole Cloud', 'optimole-wp' ),
2244 'exceed_plan_quota_notice_secondary_action' => __( 'No, keep images on my website', 'optimole-wp' ),
2245 'plan_update_notice_title' => __( 'Plan Update', 'optimole-wp' ),
2246 'plan_update_notice_desc' => __( 'We\'ve changed how plans work. Users on the Optimole Free plan cannot offload new images. Existing images that are already offloaded will remain offloaded.', 'optimole-wp' ),
2247 'upgrade_to_use_offloading_notice_desc' => __( 'Offloading images is a PRO feature. Please upgrade your plan to enable image transfer to Optimole Cloud.', 'optimole-wp' ),
2248 'visual_settings' => __( 'Visual Settings', 'optimole-wp' ),
2249 'extended_features' => __( 'Extended Features', 'optimole-wp' ),
2250 // translators: mark that the options are aplied globally.
2251 'global_option' => __( 'Global', 'optimole-wp' ),
2252 // translators: This option is discouraged from being used.
2253 'not_recommended' => __( 'Not recommended', 'optimole-wp' ),
2254 // translators: %1$s is the starting bold tag, %2$s is the ending bold tag.
2255 'viewport_skip_images_notice' => sprintf( __( 'When %1$sskip above the fold%2$s and %1$sskip first images%2$s are both enabled: the skip rule applies on a user\'s first page view. On subsequent views, once viewport data exists, the skip rule is ignored in favor of the viewport data.', 'optimole-wp' ), '<strong>', '</strong>' ),
2256 // translators: %1$s is the starting bold tag, %2$s is the ending bold tag.
2257 'native_lazy_load_warning' => sprintf( __( 'Native browser loading works with viewport detection, but it does not support smart image scaling. It can offer better cross-browser compatibility. Still, we do %1$snot recommend%2$s it for most sites due to fewer controls and features compared to Smart Loading.', 'optimole-wp' ), '<strong>', '</strong>' ),
2258 'performance_impact_alert_title' => __( 'Performance Impact Alert', 'optimole-wp' ),
2259 'performance_impact_alert_lazy_desc' => __( 'Disabling Lazy Load may significantly impact your site\'s loading speed and Core Web Vitals scores.', 'optimole-wp' ),
2260 'performance_impact_alert_scale_desc' => __( 'Disabling Image Scaling may significantly impact your site\'s loading speed and Core Web Vitals scores.', 'optimole-wp' ),
2261 'performance_impact_alert_action_label' => __( 'Continue with disabling', 'optimole-wp' ),
2262 'performance_impact_alert_secondary_action_label' => __( 'Keep enabled and get help', 'optimole-wp' ),
2263 ],
2264 'help' => [
2265 'section_one_title' => __( 'Help and Support', 'optimole-wp' ),
2266 'section_two_title' => __( 'Documentation', 'optimole-wp' ),
2267 'section_two_sub' => __( 'Docs Page', 'optimole-wp' ),
2268 'get_support_title' => __( 'Get Support', 'optimole-wp' ),
2269 'get_support_desc' => __( 'Need help or got a question? Submit a ticket and we\'ll get back to you.', 'optimole-wp' ),
2270 'get_support_cta' => __( 'Contact Support', 'optimole-wp' ),
2271 'feat_request_title' => __( 'Have a feature request?', 'optimole-wp' ),
2272 'feat_request_desc' => __( 'Help us improve Optimole by sharing feedback and ideas for new features.', 'optimole-wp' ),
2273 'feat_request_cta' => __( 'Submit a Feature Request', 'optimole-wp' ),
2274 'feedback_title' => __( 'Changelog', 'optimole-wp' ),
2275 'feedback_desc' => __( 'Check our changelog to see latest fixes and features implemented.', 'optimole-wp' ),
2276 'feedback_cta' => __( 'View Changelog', 'optimole-wp' ),
2277 'account_title' => __( 'Account', 'optimole-wp' ),
2278 'account_item_one' => __( 'How Optimole counts the visitors?', 'optimole-wp' ),
2279 'account_item_two' => __( 'What happens if I exceed plan limits?', 'optimole-wp' ),
2280 'account_item_three' => __( 'Visits based plan', 'optimole-wp' ),
2281 'image_processing_title' => __( 'Image Processing', 'optimole-wp' ),
2282 'image_processing_item_one' => __( 'Getting Started With Optimole', 'optimole-wp' ),
2283 'image_processing_item_two' => __( 'How Optimole can serve WebP images', 'optimole-wp' ),
2284 'image_processing_item_three' => __( 'Adding Watermarks to your images', 'optimole-wp' ),
2285 'api_title' => __( 'API', 'optimole-wp' ),
2286 'api_item_one' => __( 'Cloud Library Browsing', 'optimole-wp' ),
2287 'api_item_two' => __( 'Exclude from Optimizing or Lazy Loading', 'optimole-wp' ),
2288 'api_item_three' => __( 'Custom Integration', 'optimole-wp' ),
2289 ],
2290 'watermarks' => [
2291 'image' => __( 'Image', 'optimole-wp' ),
2292 'loading_remove_watermark' => __( 'Removing watermark resource ...', 'optimole-wp' ),
2293 'max_allowed' => __( 'You are allowed to save maximum 5 images.', 'optimole-wp' ),
2294 'list_header' => __( 'Possible watermarks', 'optimole-wp' ),
2295 'settings_header' => __( 'Watermarks position settings', 'optimole-wp' ),
2296 'no_images_found' => __( 'No images available for watermark. Please upload one.', 'optimole-wp' ),
2297 'id' => __( 'ID', 'optimole-wp' ),
2298 'name' => __( 'Name', 'optimole-wp' ),
2299 'type' => __( 'Type', 'optimole-wp' ),
2300 'action' => __( 'Action', 'optimole-wp' ),
2301 'upload' => __( 'Upload', 'optimole-wp' ),
2302 'add_desc' => __( 'Add new watermark', 'optimole-wp' ),
2303 'wm_title' => __( 'Active watermark', 'optimole-wp' ),
2304 'wm_desc' => __( 'The active watermark to use from the list of uploaded watermarks.', 'optimole-wp' ),
2305 'opacity_field' => __( 'Opacity', 'optimole-wp' ),
2306 'opacity_title' => __( 'Watermark opacity', 'optimole-wp' ),
2307 'opacity_desc' => __( 'A value between 0 and 100 for the opacity level. If set to 0 it will disable the watermark.', 'optimole-wp' ),
2308 'position_title' => __( 'Watermark position', 'optimole-wp' ),
2309 'position_desc' => __( 'The place relative to the image where the watermark should be placed.', 'optimole-wp' ),
2310 'pos_nowe_title' => __( 'North-West', 'optimole-wp' ),
2311 'pos_no_title' => __( 'North', 'optimole-wp' ),
2312 'pos_noea_title' => __( 'North-East', 'optimole-wp' ),
2313 'pos_we_title' => __( 'West', 'optimole-wp' ),
2314 'pos_ce_title' => __( 'Center', 'optimole-wp' ),
2315 'pos_ea_title' => __( 'East', 'optimole-wp' ),
2316 'pos_sowe_title' => __( 'South-West', 'optimole-wp' ),
2317 'pos_so_title' => __( 'South', 'optimole-wp' ),
2318 'pos_soea_title' => __( 'South-East', 'optimole-wp' ),
2319 'offset_x_field' => __( 'Offset X', 'optimole-wp' ),
2320 'offset_y_field' => __( 'Offset Y', 'optimole-wp' ),
2321 'offset_title' => __( 'Watermark offset', 'optimole-wp' ),
2322 'offset_desc' => __( 'Offset the watermark from set position on X and Y axis. Values can be positive or negative.', 'optimole-wp' ),
2323 'scale_field' => __( 'Scale', 'optimole-wp' ),
2324 'scale_title' => __( 'Watermark scale', 'optimole-wp' ),
2325 'scale_desc' => __( 'A value between 0 and 300 for the scale of the watermark (100 is the original size and 300 is 3x the size) relative to the resulting image size. If set to 0 it will default to the original size.', 'optimole-wp' ),
2326 'save_changes' => __( 'Save changes', 'optimole-wp' ),
2327 ],
2328 'latest_images' => [
2329 'image' => __( 'Image', 'optimole-wp' ),
2330 'no_images_found' => sprintf( /* translators: 1 is the starting anchor tag, 2 is the ending anchor tag */ __( 'We are currently optimizing your images. Meanwhile you can visit your %1$shomepage%2$s and check how our plugin performs.', 'optimole-wp' ), '<a href="' . esc_url( home_url() ) . '" target="_blank" >', '</a>' ),
2331 'compression' => __( 'Optimization', 'optimole-wp' ),
2332 'loading_latest_images' => __( 'Loading your optimized images...', 'optimole-wp' ),
2333 'last_optimized_images' => __( 'Last optimized images', 'optimole-wp' ),
2334 // translators: %s is the percentage (e.g. 10%).
2335 'percentage_saved' => sprintf( __( '%s Saved', 'optimole-wp' ), '{ratio}%' ),
2336 // translators: %s is the percentage (e.g. 10%).
2337 'percentage_smaller' => sprintf( __( '%s smaller', 'optimole-wp' ), '{ratio}%' ),
2338 'same_size' => __( '🙉 We couldn\'t do better, this image is already optimized at maximum.', 'optimole-wp' ),
2339 'small_optimization' => __( '😬 Not that much, just <strong>{ratio}</strong> smaller.', 'optimole-wp' ),
2340 'medium_optimization' => __( '🤓 We are on the right track, <strong>{ratio}</strong> squeezed.', 'optimole-wp' ),
2341 'big_optimization' => __( '❤️❤️❤️ Our moles just nailed it, this one is <strong>{ratio}</strong> smaller.', 'optimole-wp' ),
2342 ],
2343 'csat' => [
2344 'close' => __( 'Close', 'optimole-wp' ),
2345 ],
2346 'cron_error' => sprintf( /* translators: 1 is code to disable cron, 2 value of the constant */ __( 'It seems that you have the %1$s constant defined as %2$s. The offloading process uses cron events to offload the images in the background. Please remove the constant from your wp-config.php file in order for the offloading process to work.', 'optimole-wp' ), '<code>DISABLE_WP_CRON</code>', '<code>true</code>' ),
2347 'cancel' => __( 'Cancel', 'optimole-wp' ),
2348 'optimization_status' => [
2349 'title' => __( 'Optimization Status', 'optimole-wp' ),
2350 'statusTitle1' => __( 'Image Handling', 'optimole-wp' ),
2351 'statusSubTitle1' => __( 'All images are optimized automatically', 'optimole-wp' ),
2352 'statusTitle2' => __( 'Smart Lazy-Loading', 'optimole-wp' ),
2353 'statusSubTitle2' => __( 'Images load as visitors scroll', 'optimole-wp' ),
2354 'statusTitle3' => __( 'Image Scalling', 'optimole-wp' ),
2355 'statusSubTitle3' => __( 'All images are perfectly sized for devices', 'optimole-wp' ),
2356 'disable' => __( 'Disable', 'optimole-wp' ),
2357 'enable' => __( 'Enable', 'optimole-wp' ),
2358 'manage' => __( 'Manage', 'optimole-wp' ),
2359 ],
2360 'optimization_tips' => sprintf(
2361 /* translators: 1 is the opening anchor tag, 2 is the closing anchor tag */
2362 __( '%1$sView all optimization tips%2$s', 'optimole-wp' ),
2363 '<a class="flex justify-center items-center font-semibold" href="https://docs.optimole.com/article/2238-optimization-tips" target="_blank"> ',
2364 '<span style="text-decoration:none; font-size:15px; margin-top:2px;" class="dashicons dashicons-external"></span></a>'
2365 ),
2366 'contact_support' => [
2367 // translators: %s is the email main subject.
2368 'title_prefix' => __( '[Lazy Load Issue] %s', 'optimole-wp' ),
2369 'disable_lazy_load_scaling' => __( 'Disable Lazy Load & Scaling', 'optimole-wp' ),
2370 'disable_image_scaling' => __( 'Disable Image Scaling', 'optimole-wp' ),
2371 'enable_native_lazy_load' => __( 'Enable Native Lazy Load', 'optimole-wp' ),
2372 ],
2373 // translators: %s is the date of the renewal.
2374 'renew_date' => __( 'Renews %s', 'optimole-wp' ),
2375 ];
2376 }
2377
2378 /**
2379 * Allow SVG uploads
2380 *
2381 * @param array $mimes Supported mimes.
2382 *
2383 * @return array
2384 * @access public
2385 * @uses filter:upload_mimes
2386 */
2387 public function allow_svg( $mimes ) {
2388 $mimes['svg'] = 'image/svg+xml';
2389
2390 return $mimes;
2391 }
2392
2393 /**
2394 * Get the Formbricks survey metadata.
2395 *
2396 * @param array $data The data in Formbricks format.
2397 * @param string $page_slug The slug of the page.
2398 *
2399 * @return array - The data in Formbricks format.
2400 */
2401 public function get_survey_metadata( $data, $page_slug ) {
2402
2403 if ( 'dashboard' !== $page_slug ) {
2404 return $data;
2405 }
2406
2407 $dashboard_data = $this->localize_dashboard_app();
2408 $user_data = $dashboard_data['user_data'];
2409
2410 if ( ! isset( $user_data['plan'] ) ) {
2411 return $data;
2412 }
2413
2414 $data = [
2415 'environmentId' => 'clo8wxwzj44orpm0gjchurujm',
2416 'attributes' => [
2417 'plan' => $user_data['plan'],
2418 'status' => $user_data['status'],
2419 'cname_assigned' => ! empty( $user_data['is_cname_assigned'] ) ? $user_data['is_cname_assigned'] : 'no',
2420 'connected_websites' => isset( $user_data['whitelist'] ) ? strval( count( $user_data['whitelist'] ) ) : '0',
2421 'install_days_number' => intval( $dashboard_data['days_since_install'] ),
2422 'traffic' => strval( isset( $user_data['traffic'] ) ? $this->survey_category( $user_data['traffic'], 500 ) : 0 ),
2423 'images_number' => strval( isset( $user_data['images_number'] ) ? $this->survey_category( $user_data['images_number'], 100 ) : 0 ),
2424 ],
2425 ];
2426
2427 return $data;
2428 }
2429
2430 /**
2431 * Categorize a number for survey based on its scale.
2432 *
2433 * @param int $value The value.
2434 * @param int $scale The scale.
2435 *
2436 * @return int - The category.
2437 */
2438 public function survey_category( $value, $scale = 1 ) {
2439 $value = intval( $value / $scale );
2440
2441 if ( 1 < $value && 8 > $value ) {
2442 return 7;
2443 }
2444
2445 if ( 8 <= $value && 31 > $value ) {
2446 return 30;
2447 }
2448
2449 if ( 30 < $value && 90 > $value ) {
2450 return 90;
2451 }
2452
2453 if ( 90 <= $value ) {
2454 return 91;
2455 }
2456
2457 return 0;
2458 }
2459
2460 /**
2461 * Determines whether the exceed quota warning should be displayed to users.
2462 *
2463 * This function checks if the user's quota usage has exceeded a predefined limit
2464 * and returns a boolean value indicating whether the warning should be shown.
2465 *
2466 * @return bool True if the exceed quota warning should be displayed, false otherwise.
2467 */
2468 public function should_show_exceed_quota_warning() {
2469 if ( ! $this->settings->is_connected() ) {
2470 return false;
2471 }
2472 if ( get_option( 'optml_notice_hide_upg', 'no' ) === 'yes' ) {
2473 return false;
2474 }
2475
2476 $service_data = $this->settings->get( 'service_data' );
2477
2478 if ( ! isset( $service_data['plan'] ) ) {
2479 return false;
2480 }
2481 if ( $service_data['plan'] !== 'free' ) {
2482 return false;
2483 }
2484 if ( ! isset( $service_data['renews_on'] ) ) {
2485 return false;
2486 }
2487 $renews_on = $service_data['renews_on'];
2488 $timestamp_before_two_weeks = strtotime( '-2 weeks', $renews_on );
2489 $today_timestamp = strtotime( 'today' );
2490
2491 if ( $timestamp_before_two_weeks < $today_timestamp ) {
2492 return false;
2493 }
2494
2495 $visitors_limit = isset( $service_data['visitors_limit'] ) ? (int) $service_data['visitors_limit'] : 0;
2496 $visitors_left = isset( $service_data['visitors_left'] ) ? (int) $service_data['visitors_left'] : 0;
2497
2498 if ( ! $visitors_limit || ! $visitors_left ) {
2499 return false;
2500 }
2501
2502 $used_quota = $visitors_limit - $visitors_left;
2503 $is_50_percent_used = ( $used_quota / $visitors_limit ) >= 0.5;
2504
2505 if ( ! $is_50_percent_used ) {
2506 return false;
2507 }
2508
2509 return true;
2510 }
2511
2512 /**
2513 * Get the number of active notices (not dismissed).
2514 *
2515 * @return int - Number of active notices
2516 */
2517 private function get_active_notices_count() {
2518 $conflicting_plugins = $this->conflicting_plugins->get_conflicting_plugins();
2519 $conflicts_count = 0;
2520
2521 foreach ( $conflicting_plugins as $key => $plugin ) {
2522 $key = str_replace( 'wp-', '', $key );
2523 $class_name = 'Optml_' . ucfirst( $key );
2524
2525 if ( ! class_exists( $class_name ) ) {
2526 continue;
2527 }
2528 $conflict_instance = new $class_name();
2529
2530 if ( ! is_a( $conflict_instance, 'Optml_Abstract_Conflict' ) ) {
2531 continue;
2532 }
2533
2534 if ( $conflict_instance->is_conflict_valid() ) {
2535 ++$conflicts_count;
2536 }
2537 }
2538
2539 $dismissed_notices = get_option( 'optml_dismissed_conflicts', [] );
2540
2541 return $conflicts_count - count( $dismissed_notices );
2542 }
2543
2544 /**
2545 * Mark if the user had offloading enabled on first run.
2546 *
2547 * If it is an old free user that had offloading enabled, we will use the mark to show a notice about the plan changes.
2548 *
2549 * @return void
2550 */
2551 public function mark_user_with_offload() {
2552 if ( ! $this->settings->is_connected() ) {
2553 return;
2554 }
2555
2556 if ( false !== get_option( 'optml_has_offloading_enabled_on_upgrade', false ) ) {
2557 return;
2558 }
2559
2560 update_option( 'optml_has_offloading_enabled_on_upgrade', $this->settings->is_offload_enabled() ? 'yes' : 'no' );
2561 }
2562 }
2563