You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Lock settings based on constants
This locks the Actor settings based on the `ACTIVITYPUB_SINGLE_USER_MODE`, `ACTIVITYPUB_BLOG_MODE` or `ACTIVITYPUB_ACTOR_MODE` constants.
* add changelog
* hook into `get_option`
* fix phpcs
* fix implementation
* fix phpcs
* added changelog
* simplify lock
* changes based on feedacks
<?phpechowp_kses( __( 'Every author on this blog (with the <code>activitypub</code> capability) gets their own ActivityPub profile.', 'activitypub' ), array( 'code' => array() ) ); ?>
235
-
<strong>
236
-
<?php
237
-
echowp_kses(
238
-
sprintf(
239
-
// translators: %s is a URL.
240
-
__( 'You can add/remove the capability in the <a href="%s">user settings.</a>', 'activitypub' ),
241
-
admin_url( '/users.php' )
242
-
),
243
-
array( 'a' => array( 'href' => array() ) )
244
-
);
245
-
?>
246
-
</strong>
247
-
<?phpechowp_kses( __( 'Select all the users you want to update, choose the method from the drop-down list and click on the "Apply" button.', 'activitypub' ), array( 'code' => array() ) ); ?>
<?phpesc_html_e( 'Your blog becomes a single ActivityPub profile and every post will be published under this profile instead of the individual author profiles.', 'activitypub' ); ?>
<?phpechowp_kses( __( 'Every author on this blog (with the <code>activitypub</code> capability) gets their own ActivityPub profile.', 'activitypub' ), array( 'code' => array() ) ); ?>
248
+
<strong>
249
+
<?php
250
+
echowp_kses(
251
+
sprintf(
252
+
// translators: %s is a URL.
253
+
__( 'You can add/remove the capability in the <a href="%s">user settings.</a>', 'activitypub' ),
254
+
admin_url( '/users.php' )
255
+
),
256
+
array( 'a' => array( 'href' => array() ) )
257
+
);
258
+
?>
259
+
</strong>
260
+
<?phpechowp_kses( __( 'Select all the users you want to update, choose the method from the drop-down list and click on the "Apply" button.', 'activitypub' ), array( 'code' => array() ) ); ?>
<label for="actor-blog-mode"><strong><?phpesc_html_e( 'Both author and blog profiles', 'activitypub' ); ?></strong></label>
264
-
<p class="description">
265
-
<?phpesc_html_e( "This combines both modes. Users can be followed individually, while following the blog will show boosts of individual user's posts.", 'activitypub' ); ?>
<?phpesc_html_e( 'Your blog becomes a single ActivityPub profile and every post will be published under this profile instead of the individual author profiles.', 'activitypub' ); ?>
<label for="actor-blog-mode"><strong><?phpesc_html_e( 'Both author and blog profiles', 'activitypub' ); ?></strong></label>
277
+
<p class="description">
278
+
<?phpesc_html_e( "This combines both modes. Users can be followed individually, while following the blog will show boosts of individual user's posts.", 'activitypub' ); ?>
0 commit comments