'string', 'description' => \__( 'Use summary or full content', 'activitypub' ), 'show_in_rest' => array( 'schema' => array( 'enum' => array( 'excerpt', 'content' ), ), ), 'default' => 'content', ) ); \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_shortlink', array( 'type' => 'boolean', 'description' => \__( 'Use the Shortlink instead of the permalink', 'activitypub' ), 'default' => 0, ) ); \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_add_tags_as_hashtags', array( 'type' => 'boolean', 'description' => \__( 'Add all tags as hashtags at the end of each activity', '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' ), ) ); \register_setting( 'activitypub', 'activitypub_profile_fields', array( 'type' => 'array', 'description' => \esc_html__( 'You can have up to 4 items displayed as a table on your profile.', 'activitypub' ), 'show_in_rest' => true, 'default' => array(), ) ); } public static function add_settings_help_tab() { \get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => \__( 'Overview', 'activitypub' ), 'content' => '
' . \__( 'ActivityPub is a decentralized social networking protocol based on the ActivityStreams 2.0 data format. ActivityPub is an official W3C recommended standard published by the W3C Social Web Working Group. It provides a client to server API for creating, updating and deleting content, as well as a federated server to server API for delivering notifications and subscribing to content.', 'activitypub' ) . '
', ) ); \get_current_screen()->set_help_sidebar( '' . \__( 'For more information:', 'activitypub' ) . '
' . '' . \__( 'Test Suite', 'activitypub' ) . '
' . '' . \__( 'W3C Spec', 'activitypub' ) . '
' . '' . \__( 'Give us feedback', 'activitypub' ) . '
' . '' . \__( 'Donate', 'activitypub' ) . '
' ); } public static function add_followers_list_help_tab() { // todo } /** * Undocumented function * * @param [type] $user * @return void */ public static function add_fediverse_profile( $user ) { \load_template( \dirname( __FILE__ ) . '/../templates/user-settings.php' ); } /** * Save the ActivityPub specific data. * * @param int $user_id * @return void */ public static function save_profile( $user_id ) { if ( ! current_user_can( 'edit_user', $user_id ) ) { return false; } $profile_fields = array(); if ( isset( $_POST['activitypub_profile_fields'] ) ) { foreach ( $_POST['activitypub_profile_fields'] as $key => $value ) { } } echo ""; var_dump($_POST); } }