'string', 'description' => \__( 'Use title and link, summary, full or custom content', 'activitypub' ), 'show_in_rest' => array( 'schema' => array( 'enum' => array( 'title', 'excerpt', 'content' ), ), ), 'default' => 'content', ) ); \register_setting( 'activitypub', 'activitypub_custom_post_content', array( 'type' => 'string', 'description' => \__( 'Define your own custom post template', 'activitypub' ), 'show_in_rest' => true, 'default' => ACTIVITYPUB_CUSTOM_POST_CONTENT, ) ); \register_setting( 'activitypub', 'activitypub_max_image_attachments', array( 'type' => 'integer', 'description' => \__( 'Number of images to attach to posts.', 'activitypub' ), 'default' => ACTIVITYPUB_MAX_IMAGE_ATTACHMENTS, ) ); \register_setting( 'activitypub', 'activitypub_object_type', array( 'type' => 'string', 'description' => \__( 'The Activity-Object-Type', 'activitypub' ), 'show_in_rest' => array( 'schema' => array( 'enum' => array( 'note', 'article', 'wordpress-post-format' ), ), ), 'default' => 'note', ) ); \register_setting( 'activitypub', 'activitypub_use_hashtags', array( 'type' => 'boolean', 'description' => \__( 'Add hashtags in the content as native tags and replace the #tag with the tag-link', 'activitypub' ), 'default' => 0, ) ); \register_setting( 'activitypub', 'activitypub_support_post_types', array( 'type' => 'string', 'description' => \esc_html__( 'Enable ActivityPub support for post types', 'activitypub' ), 'show_in_rest' => true, 'default' => array( 'post', 'pages' ), ) ); } public static function add_settings_help_tab() { require_once \dirname( __FILE__ ) . '/help.php'; } public static function add_followers_list_help_tab() { // todo } public static function add_fediverse_profile( $user ) { ?>

ID ); } /** * hook comment_row_actions * Reply to ActivityPub Comments from the edit-comments.php screen */ public static function reply_comments_actions( $actions, $comment ) { $recipients = \Activitypub\reply_recipients( $comment->comment_ID ); $summary = \Activitypub\get_summary( $comment->comment_ID ); $reply_button = ''; $actions['reply'] = \sprintf( $reply_button, $comment->comment_ID, $comment->comment_post_ID, 'replyto', 'vim-r comment-inline', \esc_attr__( 'Reply to this comment', 'activitypub' ), $recipients, $summary, \__( 'Reply', 'activitypub' ) ); return $actions; } public static function enqueue_scripts( $hook_suffix ) { if ( false !== strpos( $hook_suffix, 'activitypub' ) || ( 'edit-comments.php' === $hook_suffix ) || ( 'index.php' === $hook_suffix ) ) { wp_enqueue_style( 'activitypub-admin-styles', plugins_url( 'assets/css/activitypub-admin.css', ACTIVITYPUB_PLUGIN_FILE ), array(), '1.0.0' ); wp_enqueue_script( 'activitypub-admin-styles', plugins_url( 'assets/js/activitypub-admin.js', ACTIVITYPUB_PLUGIN_FILE ), array( 'jquery' ), '1.0.0', false ); } } }