Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/15/2023 08:16:46 AM (21 months ago)
Author:
imath
Message:

Make more BuddyPress generated links ready for BP Rewrites

  • Improve the Members component adding permastructs and custom rewrite

rules for registration and activation pages.

  • Improve the Blogs component adding custom rewrite rule to handle the

Blogs create page.

  • Make a huge progress about replacing all occurrences of

bp_get_root_domain() (45 replacements were performed).

  • Deprecate bp_groups_directory_permalink(),

bp_get_groups_directory_permalink(), bp_blogs_directory_permalink() &
bp_get_blogs_directory_permalink() and replace them with these new
functions: bp_groups_directory_url(), bp_get_groups_directory_url(),
bp_blogs_directory_url() & bp_get_blogs_directory_url().

  • Although bp_loggedin_user_domain() & bp_displayed_user_domain()

should also be deprecated, we're leaving them as aliases of the right
functions to use. Plugin authors shouldn't use them to build other links
than member's profile home url.

NB: these deprecations are required because these functions were used
to build BuddyPress URLs concatenating URL chunks. Once the BP Classic
plugin will be built we will adapt the code to remove these deprecation
notices.

Props r-a-y, johnjamesjacoby, boonebgorges

Closes https://github.com/buddypress/buddypress/pull/73
See #4954

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/testcases/groups/class-bp-groups-member.php

    r13314 r13436  
    77    static public $user_ids;
    88    static public $group_ids;
     9    protected $permalink_structure = '';
     10
     11    public function set_up() {
     12        parent::set_up();
     13        $this->permalink_structure = get_option( 'permalink_structure', '' );
     14    }
     15
     16    public function tear_down() {
     17        parent::tear_down();
     18        $this->set_permalink_structure( $this->permalink_structure );
     19    }
    920
    1021    public static function wpSetUpBeforeClass( $factory ) {
     
    161172     */
    162173    public function test_bp_groups_user_can_send_invites() {
     174        $this->set_permalink_structure( '/%postname%/' );
    163175        $u_nonmembers = self::factory()->user->create();
    164176        $u_members    = self::factory()->user->create();
Note: See TracChangeset for help on using the changeset viewer.