| 1 |
<?php |
| 2 |
/** |
| 3 |
* Users Help Tab template. |
| 4 |
* |
| 5 |
* @package Activitypub |
| 6 |
*/ |
| 7 |
|
| 8 |
?> |
| 9 |
<h2><?php esc_html_e( 'Managing ActivityPub Capabilities', 'activitypub' ); ?></h2> |
| 10 |
|
| 11 |
<p><?php esc_html_e( 'Use the bulk actions on this page to control which users have access to ActivityPub features:', 'activitypub' ); ?></p> |
| 12 |
|
| 13 |
<ol> |
| 14 |
<li><?php esc_html_e( 'Select the users you want to update by checking the boxes next to their names.', 'activitypub' ); ?></li> |
| 15 |
<li><?php esc_html_e( 'In the “Bulk Actions” dropdown, choose:', 'activitypub' ); ?> |
| 16 |
<ul> |
| 17 |
<li><?php esc_html_e( '“Enable for ActivityPub” to grant ActivityPub capabilities.', 'activitypub' ); ?></li> |
| 18 |
<li><?php esc_html_e( '“Disable for ActivityPub” to remove ActivityPub capabilities.', 'activitypub' ); ?></li> |
| 19 |
</ul> |
| 20 |
</li> |
| 21 |
<li><?php esc_html_e( 'Click “Apply” to save your changes.', 'activitypub' ); ?></li> |
| 22 |
</ol> |
| 23 |
|
| 24 |
<h3><?php esc_html_e( 'What are ActivityPub Capabilities?', 'activitypub' ); ?></h3> |
| 25 |
|
| 26 |
<p><?php esc_html_e( 'The ActivityPub capability allows a user to:', 'activitypub' ); ?></p> |
| 27 |
|
| 28 |
<ul> |
| 29 |
<li><?php esc_html_e( 'Have an individual ActivityPub profile that can be followed from other Fediverse platforms.', 'activitypub' ); ?></li> |
| 30 |
<li><?php esc_html_e( 'Publish content to the Fediverse automatically when posting on your WordPress site.', 'activitypub' ); ?></li> |
| 31 |
<li><?php esc_html_e( 'Manage followers and interactions from Fediverse users.', 'activitypub' ); ?></li> |
| 32 |
<li><?php esc_html_e( 'Access ActivityPub-specific settings and features.', 'activitypub' ); ?></li> |
| 33 |
</ul> |
| 34 |
|
| 35 |
<h3><?php esc_html_e( 'Default Behavior', 'activitypub' ); ?></h3> |
| 36 |
|
| 37 |
<p><?php esc_html_e( 'By default, users who can publish posts are automatically granted ActivityPub capabilities. You can override this default behavior using the bulk edit options described above.', 'activitypub' ); ?></p> |
| 38 |
|
| 39 |
<p><em> |
| 40 |
<?php |
| 41 |
printf( |
| 42 |
wp_kses( |
| 43 |
/* translators: %s: URL to ActivityPub settings */ |
| 44 |
__( 'Note: If <a href="%s">“Blog profile only” mode</a> is enabled (where the site acts as a single ActivityPub profile), individual user capabilities do not affect ActivityPub functionality. All content is published under the blog’s profile.', 'activitypub' ), |
| 45 |
array( 'a' => array( 'href' => true ) ) |
| 46 |
), |
| 47 |
esc_url( admin_url( 'options-general.php?page=activitypub&tab=settings' ) ) |
| 48 |
); |
| 49 |
?> |
| 50 |
</em></p> |
| 51 |
|