class-inline-help.php
2 years ago
gridicon-help.svg
5 years ago
inline-help-template.php
5 years ago
inline-help.css
5 years ago
inline-help-template.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Inline Help FAB icon template. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | // phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable |
| 9 | ?> |
| 10 | |
| 11 | <div class="a8c-faux-inline-help"> |
| 12 | <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' ); ?>"> |
| 13 | <?php echo wp_kses( $args['icon'], $args['svg_allowed'] ); ?> |
| 14 | </a> |
| 15 | </div> |
| 16 |