groups_at_message_notification_message
The BuddyPress groups at message notification hook.
Description
apply_filters( 'groups_at_message_notification_message', (unknown) $message, (unknown) $group, (string) $poster_name, (unknown) $content, (unknown) $message_link, (unknown) $settings_link );
Parameters (6)
- 0. $message (unknown)
- The message.
- 1. $group (unknown)
- The group.
- 2. $poster_name (string)
- The poster name.
- 3. $content (unknown)
- The content.
- 4. $message_link (unknown)
- The message link.
- 5. $settings_link (unknown)
- The settings link.
Usage
- To run the hook, copy the example below.
- $message = apply_filters( 'groups_at_message_notification_message', $message, $group, $poster_name, $content, $message_link, $settings_link );
- if ( !empty( $message ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the groups_at_message_notification_message callback
- function filter_groups_at_message_notification_message( $message, $group, $poster_name, $content, $message_link, $settings_link ) {
- // make filter magic happen here...
- return $message;
- };
- // add the filter
- add_filter( 'groups_at_message_notification_message', 'filter_groups_at_message_notification_message', 10, 6 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'groups_at_message_notification_message', 'filter_groups_at_message_notification_message', 10, 6 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/deprecated/1.5.php
- $message = apply_filters( 'groups_at_message_notification_message', $message, $group, $poster_name, $content, $message_link, $settings_link );