| 1 |
<?php |
| 2 |
/** |
| 3 |
* WPSEO plugin file. |
| 4 |
* |
| 5 |
* @package WPSEO\Admin |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Notifications template variables. |
| 10 |
* |
| 11 |
* @noinspection PhpUnusedLocalVariableInspection |
| 12 |
* |
| 13 |
* @var array |
| 14 |
*/ |
| 15 |
$notifications_data = Yoast_Notifications::get_template_variables(); |
| 16 |
|
| 17 |
$wpseo_contributors_phrase = sprintf( |
| 18 |
/* translators: %1$s expands to Yoast SEO */ |
| 19 |
__( 'See who contributed to %1$s.', 'wordpress-seo' ), |
| 20 |
'Yoast SEO' |
| 21 |
); |
| 22 |
|
| 23 |
?> |
| 24 |
|
| 25 |
<div class="tab-block"> |
| 26 |
<div class="yoast-notifications"> |
| 27 |
|
| 28 |
<div class="yoast-container yoast-container__error"> |
| 29 |
<?php require WPSEO_PATH . 'admin/views/partial-notifications-errors.php'; ?> |
| 30 |
</div> |
| 31 |
|
| 32 |
<div class="yoast-container yoast-container__warning"> |
| 33 |
<?php require WPSEO_PATH . 'admin/views/partial-notifications-warnings.php'; ?> |
| 34 |
</div> |
| 35 |
|
| 36 |
</div> |
| 37 |
</div> |
| 38 |
|
| 39 |
<div class="tab-block"> |
| 40 |
<h2><?php esc_html_e( 'Credits', 'wordpress-seo' ); ?></h2> |
| 41 |
<p> |
| 42 |
<a href="<?php WPSEO_Shortlinker::show( 'https://yoa.st/yoast-seo-credits' ); ?>"><?php echo esc_html( $wpseo_contributors_phrase ); ?></a> |
| 43 |
</p> |
| 44 |
</div> |
| 45 |
|