activate.php
1 year ago
compatible-plugins.php
1 year ago
config.php
1 year ago
connect-jp.php
1 year ago
enter.php
2 years ago
get.php
1 year ago
logo.php
2 years ago
notice.php
1 year ago
predefined.php
1 year ago
setup.php
1 year ago
start.php
1 year ago
stats.php
1 year ago
title.php
6 years ago
logo.php
14 lines
| 1 | <?php |
| 2 | //phpcs:disable VariableAnalysis |
| 3 | // There are "undefined" variables here because they're defined in the code that includes this file as a template. |
| 4 | ?> |
| 5 | <div class="akismet-masthead__logo-container"> |
| 6 | <?php if ( isset( $include_logo_link ) && $include_logo_link === true ) : ?> |
| 7 | <a href="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>" class="akismet-masthead__logo-link"> |
| 8 | <?php endif; ?> |
| 9 | <img class="akismet-masthead__logo" src="<?php echo esc_url( plugins_url( '../_inc/img/akismet-refresh-logo@2x.png', __FILE__ ) ); ?>" srcset="<?php echo esc_url( plugins_url( '../_inc/img/akismet-refresh-logo.svg', __FILE__ ) ); ?>" alt="Akismet logo" /> |
| 10 | <?php if ( isset( $include_logo_link ) && $include_logo_link === true ) : ?> |
| 11 | </a> |
| 12 | <?php endif; ?> |
| 13 | </div> |
| 14 |