class-inline-help.php
2 years ago
gridicon-help.svg
2 years ago
inline-help-template.php
2 years ago
inline-help.css
5 years ago
inline-help-template.php
19 lines
| 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 |
| 8 | */ |
| 9 | |
| 10 | // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable -- HTML template, let Phan handle it. |
| 11 | |
| 12 | ?> |
| 13 | |
| 14 | <div class="a8c-faux-inline-help"> |
| 15 | <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' ); ?>"> |
| 16 | <?php echo wp_kses( $args['icon'], $args['svg_allowed'] ); ?> |
| 17 | </a> |
| 18 | </div> |
| 19 |