dd693c7e67
* copy and language improvements everywhere * remove "try" thanks @cavalierlife --------- Co-authored-by: Matthias Pfefferle <pfefferle@users.noreply.github.com>
28 lines
848 B
PHP
28 lines
848 B
PHP
<?php
|
|
\load_template(
|
|
__DIR__ . '/admin-header.php',
|
|
true,
|
|
array(
|
|
'settings' => '',
|
|
'welcome' => '',
|
|
'followers' => 'active',
|
|
)
|
|
);
|
|
$table = new \Activitypub\Table\Followers();
|
|
$follower_count = $table->get_user_count();
|
|
// translators: The follower count.
|
|
$followers_template = _n( 'Your blog profile currently has %s follower.', 'Your blog profile currently has %s followers.', $follower_count, 'activitypub' );
|
|
?>
|
|
<div class="wrap activitypub-followers-page">
|
|
<p><?php \printf( \esc_html( $followers_template ), \esc_attr( $follower_count ) ); ?></p>
|
|
|
|
<form method="get">
|
|
<input type="hidden" name="page" value="activitypub" />
|
|
<input type="hidden" name="tab" value="followers" />
|
|
<?php
|
|
$table->prepare_items();
|
|
$table->display();
|
|
?>
|
|
<?php wp_nonce_field( 'activitypub-followers-list', '_apnonce' ); ?>
|
|
</form>
|
|
</div>
|