Skip to:
Content

BuddyPress.org

Opened 10 years ago

Closed 10 years ago

#5657 closed enhancement (fixed)

Ability to add profile fields programmatically, without touching DB

Reported by: slaffik's profile slaFFik Owned by:
Milestone: 2.1 Priority: normal
Severity: normal Version:
Component: Extended Profile Keywords: good-first-bug has-patch
Cc: tw2113@…

Description

I'm talking about BP_XProfile_Group::get
So far it doesn't have filters before and after reseting indexes.

In BuddyPress 2.0.1:
wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php:298
wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-classes.php:301

Would be nice to have :)

Attachments (4)

bp-xprofile-admin-5657.diff (637 bytes) - added by tw2113 10 years ago.
bp-xprofile-classes-5657.diff (541 bytes) - added by tw2113 10 years ago.
bp-xprofile-functions-5657.diff (1.3 KB) - added by tw2113 10 years ago.
bp-xprofile-template-5657.diff (1.1 KB) - added by tw2113 10 years ago.

Download all attachments as: .zip

Change History (13)

#1 @boonebgorges
10 years ago

For consistency's sake, I would prefer to create a procedural wrapper for BP_XProfile_Group::get(), and then to put the filter there instead. Before doing that, can you say just a little bit more about how you're planning on using this? I would like to be sure that the filters are properly structured for your kind of use case.

#2 @slaFFik
10 years ago

Several scenarios:
1) ability to add fields in admin area on the fly (without saving them to DB)
2) ability to add fields on registration page on the fly with custom processing of their name="" attributes on reg.form submission.
3) ability to filter out fields from displaying on front-end on either Profile tab, or Profile -> Edit.

Hope that helps.

#3 @boonebgorges
10 years ago

  • Keywords needs-patch good-first-bug added
  • Milestone changed from Awaiting Review to 2.1

Thanks, that does help.

I think that a procedural wrapper is still the way to go here. It's more the "WordPress way", and is in keeping with functions like bp_activity_get() and groups_get_groups(). Something like xprofile_get_groups(), which would wrap the static class method and run the return value through apply_filters(). Then find the two or three places where we call this method internally, and use the procedural wrapper instead.

This is an easy patch for someone who wants some props for 2.1 ;)

#4 @tw2113
10 years ago

  • Cc tw2113@… added
  • Keywords has-patch added; needs-patch removed

At least a first round for this. I don't know if there's much more to improve on offhand, but let me know if you see anything glaring.

#5 @DJPaul
10 years ago

Thanks for the patch, tw2113! The inclusion of the phpDoc for the new method made me extra happy. :)

@boone Can you take a quick look at this and let me know if it's what you had in mind? It looks OK to me (not tested yet).

#6 @boonebgorges
10 years ago

Yup, exactly what I had in mind. Thanks, tw2113!

slaFFik - after I commit this, will you please have a look to make sure it lets you do what you need to do?

#7 @boonebgorges
10 years ago

In 8785:

Introduce bp_xprofile_get_groups() procedural wrapper for BP_XProfile_Group::get()

This wrapper includes a filter on the return values, so that plugin authors can
manipulate data programatically.

Also includes some documentation improvements, and implements new function
throughout BP.

See #5657

Props tw2113

#8 @slaFFik
10 years ago

Seems that's what I wanted.

Thanks tw2113 and Boone!

#9 @DJPaul
10 years ago

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.