-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathhelper-functions.php
More file actions
798 lines (678 loc) · 21.1 KB
/
Copy pathhelper-functions.php
File metadata and controls
798 lines (678 loc) · 21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
<?php
/**
* Accessibility Checker plugin file.
*
* @package Accessibility_Checker
*/
/**
* Compare strings
*
* @param string $string1 String to compare.
* @param string $string2 String to compare.
* @return boolean
*/
function edac_compare_strings( $string1, $string2 ) {
/**
* Prepare strings for our comparison.
*
* @param string $content String to prepare.
* @return string
*/
$prepare_strings = function ( $content ) {
// Text to remove.
$remove_text = [
__( 'permalink of ', 'accessibility-checker' ),
__( 'permalink to ', 'accessibility-checker' ),
__( ' ', 'accessibility-checker' ),
];
$content = strtolower( $content );
$content = str_ireplace( $remove_text, '', $content );
$content = wp_strip_all_tags( $content );
$content = trim( $content, " \t\n\r\0\x0B\xC2\xA0" );
return html_entity_decode( $content );
};
return $prepare_strings( $string1 ) === $prepare_strings( $string2 );
}
/**
* Check if plugin is installed by getting all plugins from the plugins dir
*
* @param string $plugin_slug Slug of the plugin.
* @return bool
*/
function edac_check_plugin_installed( $plugin_slug ) {
$installed_plugins = get_plugins();
return array_key_exists( $plugin_slug, $installed_plugins ) || in_array( $plugin_slug, $installed_plugins, true );
}
/**
* Convert cardinal number into ordinal number
*
* @param int|string $number Number to make ordinal.
* @return string
*/
function edac_ordinal( $number ) {
$number = (int) $number;
if ( class_exists( 'NumberFormatter' ) ) {
return (
new NumberFormatter(
get_locale(),
NumberFormatter::ORDINAL
)
)->format( $number );
} else {
if ( $number % 100 >= 11 && $number % 100 <= 13 ) {
$ordinal = $number . 'th';
} else {
switch ( $number % 10 ) {
case 1:
$ordinal = $number . 'st';
break;
case 2:
$ordinal = $number . 'nd';
break;
case 3:
$ordinal = $number . 'rd';
break;
default:
$ordinal = $number . 'th';
break;
}
}
return $ordinal;
}
}
/**
* Remove element from multi-dimensional array
*
* @param array $items The multi-dimensional array.
* @param string $key The key of the element.
* @param string $value The value of the element.
* @return array
*/
function edac_remove_element_with_value( $items, $key, $value ) {
foreach ( $items as $sub_key => $sub_array ) {
if ( $sub_array[ $key ] === $value ) {
unset( $items[ $sub_key ] );
}
}
return $items;
}
/**
* Filter a multi-dimensional array
*
* @param array $items The multi-dimensional array.
* @param string $index The index of the element.
* @param string $value The element value to match.
* @return array
*/
function edac_filter_by_value( $items, $index, $value ) {
if ( is_array( $items ) && count( $items ) > 0 ) {
foreach ( array_keys( $items ) as $key ) {
$temp[ $key ] = $items[ $key ][ $index ];
if ( $temp[ $key ] === $value ) {
$newarray[ $key ] = $items[ $key ];
}
}
}
if ( isset( $newarray ) && is_array( $newarray ) && count( $newarray ) ) {
return array_values( $newarray );
}
return [];
}
/**
* Get days plugin has been active
*
* @return int
*/
function edac_days_active() {
$activation_date = get_option( 'edac_activation_date' );
if ( $activation_date ) {
$diff = strtotime( $activation_date ) - strtotime( gmdate( 'Y-m-d H:i:s' ) );
return abs( round( $diff / 86400 ) );
}
return 0;
}
/**
* Custom Post Types
*
* @return array
*/
function edac_custom_post_types() {
$args = [
'public' => true,
'_builtin' => false,
];
$output = 'names'; // names or objects, note names is the default.
$operator = 'and'; // Options 'and' or 'or'.
return get_post_types( $args, $output, $operator );
}
/**
* Available Post Types
*
* @return array
*/
function edac_post_types() {
/**
* Filter the post types that the plugin will check.
*
* @since 1.4.0
*
* @param array $post_types post types.
*/
$post_types = apply_filters( 'edac_filter_post_types', [ 'post', 'page' ] );
// remove duplicates.
$post_types = array_unique( $post_types );
// validate post types.
foreach ( $post_types as $key => $post_type ) {
if ( ! post_type_exists( $post_type ) ) {
unset( $post_types[ $key ] );
}
}
return $post_types;
}
/**
* This function validates a table name against WordPress naming conventions and checks its existence in the database.
*
* The function first checks if the provided table name only contains alphanumeric characters, underscores, or hyphens.
* If not, it returns null.
*
* After that, it checks if a table with that name actually exists in the database using the SHOW TABLES LIKE query.
* If the table doesn't exist, it also returns null.
*
* If both checks are passed, it returns the valid table name.
*
* @param string $table_name The name of the table to be validated.
*
* @return string|null The validated table name, or null if the table name is invalid or the table does not exist.
*/
function edac_get_valid_table_name( $table_name ) {
global $wpdb;
// Check if table name only contains alphanumeric characters, underscores, or hyphens.
if ( ! preg_match( '/^[a-zA-Z0-9_\-]+$/', $table_name ) ) {
// Invalid table name.
return null;
}
// Verify that the table actually exists in the database.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
if ( $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $table_name ) ) !== $table_name ) {
// Table does not exist.
return null;
}
return $table_name;
}
/**
* Upcoming meetups in json format
*
* @param string $meetup meetup name.
* @param integer $count number of meetups to return.
* @return json
*/
function edac_get_upcoming_meetups_json( $meetup, $count = 5 ) {
if ( empty( $meetup ) || ! is_string( $meetup ) ) {
return;
}
// Min of 1 and max of 25.
$count = absint( max( 1, min( 25, $count ) ) );
$key = '_upcoming_meetups__' . sanitize_title( $meetup ) . '__' . (int) $count;
$output = get_transient( $key );
if ( false === $output ) {
$request_uri = 'https://api.meetup.com/gql-ext';
$query = '
query Group {
groupByUrlname(urlname: "' . (string) $meetup . '") {
events(first: ' . (int) $count . ') {
totalCount
edges {
node {
dateTime
eventUrl
id
title
}
}
}
}
}';
// Make POST request with the GraphQL query.
$request = wp_remote_post(
$request_uri,
[
'headers' => [
'Content-Type' => 'application/json',
],
'body' => wp_json_encode(
[
'query' => $query,
]
),
]
);
if ( is_wp_error( $request ) || 200 !== (int) wp_remote_retrieve_response_code( $request ) ) {
return;
}
$response_body = json_decode( wp_remote_retrieve_body( $request ) );
// Return early if we don't have the expected data.
if ( empty( $response_body ) || ! isset( $response_body->data->groupByUrlname->events->edges ) ) {
return;
}
// Transform the GraphQL response to match the format expected from old rest response.
$output = [];
foreach ( $response_body->data->groupByUrlname->events->edges as $edge ) {
$event = $edge->node;
// phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- GraphQL response uses camelCase.
$event_data = new stdClass();
$event_data->name = $event->title;
$event_data->time = strtotime( $event->dateTime ) * 1000; // Convert to milliseconds to match old format.
$event_data->link = $event->eventUrl;
$event_data->id = $event->id;
// phpcs:enable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase.
$output[] = $event_data;
}
if ( empty( $output ) ) {
return;
}
set_transient( $key, $output, DAY_IN_SECONDS );
}
return $output;
}
/**
* Upcoming meetups in html
*
* @param string $meetup meetup name.
* @param integer $count number of meetups to return.
* @param string $heading heading level.
* @return json
*/
function edac_get_upcoming_meetups_html( $meetup, $count = 5, $heading = '3' ) {
$json = edac_get_upcoming_meetups_json( $meetup, $count );
if ( empty( $json ) ) {
return;
}
$html = '<ul class="edac-upcoming-meetup-list">';
foreach ( $json as $event ) {
$link_text = esc_html__( 'Attend Free', 'accessibility-checker' );
$html .= '
<li class="edac-upcoming-meetup-item edac-mb-3">
<h' . esc_html( $heading ) . ' class="edac-upcoming-meetup-item-name">' . esc_html( $event->name ) . '</h' . esc_html( $heading ) . '>
<div class="edac-upcoming-meetup-item-time edac-timestamp-to-local">' . ( (int) $event->time / 1000 ) . '</div>
<a aria-label="' . esc_attr( $link_text . ': ' . $event->name ) . '" class="edac-upcoming-meetup-item-link" href="' . esc_url( $event->link ) . '">' . $link_text . '</a>
</li>';
}
$html .= '</ul>';
return $html;
}
/**
* Calculate the issue density
*
* @param int $issue_count number of issues.
* @param int $element_count number of elements.
* @param int $content_length length of content.
* @return int
*/
function edac_get_issue_density( $issue_count, $element_count, $content_length ) {
if ( $element_count < 1 || $content_length < 1 ) {
return 0;
}
$element_weight = .8;
$content_weight = .2;
$error_elements_percentage = $issue_count / $element_count;
$error_content_percentage = $issue_count / $content_length;
$score = (
( $error_elements_percentage * $element_weight ) +
( $error_content_percentage * $content_weight )
);
return round( $score * 100, 2 );
}
/**
* Get simplified summary
*
* @param integer $post Post ID.
* @return void
*/
function edac_get_simplified_summary( $post = null ) {
if ( null === $post ) {
$post = get_the_ID();
}
if ( null === $post ) {
return;
}
echo wp_kses_post(
( new \EDAC\Inc\Simplified_Summary() )->simplified_summary_markup( $post )
);
}
/**
* Get Post Count by available custom post types
*
* @return mixed
*/
function edac_get_posts_count() {
$output = [];
$post_types = get_option( 'edac_post_types' );
if ( $post_types ) {
foreach ( $post_types as $post_type ) {
$counts = wp_count_posts( $post_type );
if ( $counts ) {
foreach ( $counts as $key => $value ) {
// phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
if ( 0 == $value ) {
unset( $counts->{$key} );
}
}
}
if ( $counts ) {
$array = [];
foreach ( $counts as $key => $value ) {
$array[] = $key . ' = ' . $value;
}
if ( $array ) {
$output[] = $post_type . ': ' . implode( ', ', $array );
}
}
}
}
if ( $output ) {
return implode( ', ', $output );
}
return false;
}
/**
* Get Raw Global Error Count
*
* @return array
*/
function edac_get_error_count() {
global $wpdb;
// Define a unique cache key for our data.
$cache_key = 'edac_errors_' . get_current_blog_id();
$stored_errors = wp_cache_get( $cache_key );
// Check if the result exists in the cache.
if ( false === $stored_errors ) {
// If not, perform the database query.
$table_name = $wpdb->prefix . 'accessibility_checker';
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$stored_errors = (int) $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i WHERE siteid = %d AND ruletype = %s', $table_name, get_current_blog_id(), 'error' ) );
// Save the result in the cache for future use.
wp_cache_set( $cache_key, $stored_errors );
}
return $stored_errors;
}
/**
* Get Raw Global Warning Count
*
* @return array Array of.
*/
function edac_get_warning_count() {
global $wpdb;
// Define a unique cache key for our data.
$cache_key = 'edac_warnings_' . get_current_blog_id();
$stored_warnings = wp_cache_get( $cache_key );
// Check if the result exists in the cache.
if ( false === $stored_warnings ) {
// If not, perform the database query.
$table_name = $wpdb->prefix . 'accessibility_checker';
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$stored_warnings = (int) $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i WHERE siteid = %d AND ruletype = %s', $table_name, get_current_blog_id(), 'warning' ) );
// Save the result in the cache for future use.
wp_cache_set( $cache_key, $stored_warnings );
}
return $stored_warnings;
}
/**
* Get Database Table Count
*
* @param string $table Database table.
* @return int
*/
function edac_database_table_count( $table ) {
global $wpdb;
// Create a unique cache key based on the table's name.
$cache_key = 'edac_table_count_' . $table;
// Try to get the count from the cache first.
$count = wp_cache_get( $cache_key );
if ( false === $count ) {
// If the count is not in the cache, perform the database query.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$count = $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i', $wpdb->prefix . $table ) );
// Save the count to the cache for future use.
wp_cache_set( $cache_key, $count );
}
return $count;
}
/**
* Generate a summary statistic list item.
*
* @since 1.14.0
*
* @param string $item_class The base CSS class for the list item.
* @param int $count The count of items to display.
* @param string $label The translated label with count included.
*
* @return string The generated HTML list item.
*/
function edac_generate_summary_stat( string $item_class, int $count, string $label ): string {
$has_error_class = ( $count > 0 ) ? ' has-errors' : '';
return '
<li class="edac-summary-stat ' . $item_class . $has_error_class . '" aria-label="' . $label . '">
<div class="edac-panel-number">
' . $count . '
</div>
<div class="edac-panel-number-label">' . $label . '</div>
</li>';
}
/**
* Generate links to pro page with some params.
*
* @param array $query_args A list of key value pairs to add as query vars to the link.
* @param string $type The type of link to generate. Default is 'pro'.
* @param array $args Additional arguments to pass on the link.
* @return string
*/
function edac_generate_link_type( $query_args = [], $type = 'pro', $args = [] ): string {
if ( ! is_array( $query_args ) ) {
$query_args = [];
}
if ( ! is_array( $args ) ) {
$args = [];
}
$date_now = new DateTime( gmdate( 'Y-m-d H:i:s' ) );
$activation_date = new DateTime( get_option( 'edac_activation_date', gmdate( 'Y-m-d H:i:s' ) ) );
$interval = $date_now->diff( $activation_date );
$days_active = $interval->days;
$query_defaults = [
'utm_source' => 'accessibility-checker',
'utm_medium' => 'software',
'utm_campaign' => 'wordpress-general',
'php_version' => PHP_VERSION,
'platform' => 'wordpress',
'platform_version' => $GLOBALS['wp_version'],
'software' => defined( 'EDACP_KEY_VALID' ) && EDACP_KEY_VALID ? 'pro' : 'free',
'software_version' => defined( 'EDACP_VERSION' ) ? EDACP_VERSION : EDAC_VERSION,
'days_active' => $days_active,
];
// Add the ref parameter if one is set via filter.
$ref = apply_filters( 'edac_filter_generate_link_type_ref', '' );
if ( ! empty( $ref ) && is_string( $ref ) ) {
$query_args['ref'] = $ref;
}
$query_args = array_merge( $query_defaults, $query_args );
switch ( $type ) {
case 'help':
$base_link = trailingslashit( 'https://a11ychecker.com/help' . $args['help_id'] ?? '' );
break;
case 'custom': // phpcs:ignore -- intentially only breaking inside the condition because if it's not set we want to hit default.
if ( $args['base_link'] ) {
$base_link = $args['base_link'];
break;
}
case 'pro':
default:
$base_link = 'https://equalizedigital.com/accessibility-checker/pricing/';
break;
}
return add_query_arg( $query_args, $base_link );
}
/**
* Echo or return a link with some utms.
*
* This is just a simplified wrapper around `edac_generate_link_type` to generate a link with UTM parameters.
*
* @param string $base_url the base URL to which UTM parameters will be added.
* @param string $campaign the UTM campaign name, optional.
* @param string $content the UTM content name, optional.
* @param bool $directly_echo whether to echo the link or return it. Default is true.
*
* @return void|string
*/
function edac_link_wrapper( $base_url, $campaign = '', $content = '', $directly_echo = true ) {
if ( empty( $base_url ) || ! is_string( $base_url ) ) {
return;
}
$params = [];
if ( ! empty( $campaign ) ) {
$params['utm_campaign'] = $campaign;
}
if ( ! empty( $content ) ) {
$params['utm_content'] = $content;
}
$link = edac_generate_link_type(
$params,
'custom',
[ 'base_link' => $base_url ]
);
if ( ! $directly_echo ) {
return $link;
}
echo esc_url( $link );
}
/**
* Check if WooCommerce is enabled.
*
* This just checks for existence of the main WooCommerce function and class.
*
* @return bool
*/
function edac_is_woocommerce_enabled() {
return function_exists( 'WC' ) && class_exists( 'WooCommerce' );
}
/**
* Check if a given post id is the WooCommerce checkout page.
*
* @param int $post_id The post ID to check.
* @return bool
*/
function edac_check_if_post_id_is_woocommerce_checkout_page( $post_id ) {
if ( ! edac_is_woocommerce_enabled() ) {
return false;
}
return wc_get_page_id( 'checkout' ) === $post_id;
}
/**
* Parse HTML content to extract image or SVG elements
*
* @param string $html The HTML content to parse.
* @return array Array containing 'img' (string) and 'svg' (string) keys.
*/
function edac_parse_html_for_media( $html ) {
if ( empty( $html ) ) {
return [
'img' => null,
'svg' => null,
];
}
// Decode HTML entities before processing.
$decoded_html = html_entity_decode( $html, ENT_QUOTES | ENT_HTML5 );
// Early return if no media tags found.
if ( stripos( $decoded_html, '<img' ) === false && stripos( $decoded_html, '<svg' ) === false ) {
return [
'img' => null,
'svg' => null,
];
}
// More specific img tag regex pattern.
if ( preg_match( '/<img[^>]+src=([\'"])(.*?)\1[^>]*>/i', $decoded_html, $matches ) ) {
return [
'img' => $matches[2] ?? null,
'svg' => null,
];
}
// SVG pattern remains the same.
if ( preg_match( '/<svg[^>]*>.*?<\/svg>/is', $decoded_html, $matches ) ) {
return [
'img' => null,
'svg' => $matches[0],
];
}
return [
'img' => null,
'svg' => null,
];
}
/**
* Remove corrected posts
*
* @param int $post_ID The ID of the post.
* @param string $type The type of the post.
* @param int $pre The flag indicating the removal stage (1 for before validation php based rules, 2 for after validation).
* @param string $ruleset The type of the ruleset to correct (php or js). For backwards compatibility, defaults to 'php'.
*
* @return void
*/
function edac_remove_corrected_posts( $post_ID, $type, $pre = 1, $ruleset = 'php' ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed, VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- $ruleset is for backwards compatibility.
global $wpdb;
$rules = edac_register_rules();
if ( 0 === count( $rules ) ) {
return;
}
$sql = 1 === $pre
? "UPDATE {$wpdb->prefix}accessibility_checker SET recordcheck = %d WHERE siteid = %d AND postid = %d AND type = %s"
: "DELETE FROM {$wpdb->prefix}accessibility_checker WHERE recordcheck = %d AND siteid = %d AND postid = %d AND type = %s";
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Using direct query for adding data to database, caching not required for one time operation.
$wpdb->query(
$wpdb->prepare(
$sql, // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQL.NotPrepared
0,
get_current_blog_id(),
$post_ID,
$type
)
);
}
/**
* Generate a landmark link with proper URL and ARIA label
*
* @param string $landmark The landmark type (e.g., "header", "navigation", "main").
* @param string $landmark_selector The CSS selector for the landmark.
* @param int $post_id The post ID to link to.
* @param string $css_class Optional CSS class for the link. Default 'edac-details-rule-records-record-landmark-link'.
* @param bool $target_blank Whether to open link in new window. Default true.
*
* @return string The HTML for the landmark link or just the landmark text if no selector.
*/
function edac_generate_landmark_link( $landmark, $landmark_selector, $post_id, $css_class = 'edac-details-rule-records-record-landmark-link', $target_blank = true ) {
$landmark = esc_html( $landmark );
if ( empty( $landmark ) ) {
return '';
}
// If we have both landmark and selector, create a link.
if ( ! empty( $landmark_selector ) ) {
$landmark_url = add_query_arg(
[
'edac_landmark' => base64_encode( $landmark_selector ),
'edac_nonce' => wp_create_nonce( 'edac_highlight' ),
],
get_the_permalink( $post_id )
);
// translators: %s is the landmark type (e.g., "Header", "Navigation", "Main").
$landmark_aria_label = sprintf( __( 'View %s landmark on website, opens a new window', 'accessibility-checker' ), ucwords( $landmark ) );
$target_attr = $target_blank ? ' target="_blank"' : '';
return sprintf(
'<a href="%s" class="%s"%s aria-label="%s">%s</a>',
esc_url( $landmark_url ),
esc_attr( $css_class ),
$target_attr,
esc_attr( $landmark_aria_label ),
ucwords( $landmark )
);
}
// If we only have landmark text, return it formatted.
return ucwords( $landmark );
}