Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Inline Help FAB icon template.
4 *
5 * @html-template load_template
6 * @html-template-var array{href:string,icon:string,svg_allowed:array} $args
7 * @package automattic/jetpack-masterbar
8 */
9
10if ( ! defined( 'ABSPATH' ) ) {
11    exit( 0 );
12}
13
14// phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- HTML template, let Phan handle it.
15?>
16
17<div class="a8c-faux-inline-help">
18    <a class="a8c-faux-inline-help__button" href="<?php echo esc_url( $args['href'] ); ?>" target="_blank" rel="noopener noreferrer" title="<?php echo esc_attr__( 'Help', 'jetpack-masterbar' ); ?>">
19        <?php echo wp_kses( $args['icon'], $args['svg_allowed'] ); ?>
20    </a>
21</div>