André Menrath
53cdbd3838
All checks were successful
PHP Code Checker / PHP Code Checker (push) Successful in 43s
PHPUnit / PHPUnit – PHP 7.4 (push) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.0 (push) Successful in 59s
PHPUnit / PHPUnit – PHP 8.1 (push) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.2 (push) Successful in 1m1s
PHPUnit / PHPUnit – PHP 8.3 (push) Successful in 57s
/ upload-release (push) Successful in 4s
Co-authored-by: André Menrath <andre.menrath@posteo.de> Co-committed-by: André Menrath <andre.menrath@posteo.de>
36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Template for the header and navigation of the admin pages.
|
|
*
|
|
* @package ActivityPub_Event_Bridge
|
|
*/
|
|
|
|
// Exit if accessed directly.
|
|
defined( 'ABSPATH' ) || exit; // @codeCoverageIgnore
|
|
|
|
/* @var array $args Template arguments. */
|
|
$args = wp_parse_args(
|
|
$args,
|
|
array(
|
|
'welcome' => '',
|
|
'settings' => '',
|
|
)
|
|
);
|
|
?>
|
|
|
|
<div class="activitypub-event-bridge-settings-header">
|
|
<div class="activitypub-event-bridge-settings-title-section">
|
|
<h1><?php \esc_html_e( 'ActivityPub Event Bridge', 'activitypub-event-bridge' ); ?></h1>
|
|
</div>
|
|
|
|
<nav class="activitypub-event-bridge-settings-tabs-wrapper" aria-label="<?php \esc_attr_e( 'Secondary menu', 'activitypub-event-bridge' ); ?>">
|
|
<a href="<?php echo \esc_url( admin_url( 'options-general.php?page=activitypub-event-bridge' ) ); ?>" class="activitypub-event-bridge-settings-tab <?php echo \esc_attr( $args['welcome'] ); ?>">
|
|
<?php \esc_html_e( 'Welcome', 'activitypub-event-bridge' ); ?>
|
|
</a>
|
|
|
|
<a href="<?php echo \esc_url( admin_url( 'options-general.php?page=activitypub-event-bridge&tab=settings' ) ); ?>" class="activitypub-event-bridge-settings-tab <?php echo \esc_attr( $args['settings'] ); ?>">
|
|
<?php \esc_html_e( 'Settings', 'activitypub-event-bridge' ); ?>
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
<hr class="wp-header-end">
|