- Timestamp:
- 05/12/2015 04:39:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-messages/classes/class-bp-messages-notice.php
r9819 r9862 110 110 * @since BuddyPress (1.0.0) 111 111 * 112 * @param BP_Messages_Notice Current instance of the message notice item being saved. Passed by reference.112 * @param BP_Messages_Notice $this Current instance of the message notice item being saved. Passed by reference. 113 113 */ 114 114 do_action_ref_array( 'messages_notice_before_save', array( &$this ) ); … … 138 138 * @since BuddyPress (1.0.0) 139 139 * 140 * @param BP_Messages_Notice Current instance of the message item being saved. Passed by reference.140 * @param BP_Messages_Notice $this Current instance of the message item being saved. Passed by reference. 141 141 */ 142 142 do_action_ref_array( 'messages_notice_after_save', array( &$this ) ); … … 184 184 * @since BuddyPress (1.0.0) 185 185 * 186 * @param BP_Messages_Notice Current instance of the message notice item being deleted.186 * @param BP_Messages_Notice $this Current instance of the message notice item being deleted. 187 187 */ 188 188 do_action( 'messages_notice_before_delete', $this ); … … 203 203 * Pulls up a list of notices. 204 204 * 205 * To get all notices, pass a value of -1 to pag_num 205 * To get all notices, pass a value of -1 to pag_num. 206 206 * 207 207 * @since BuddyPress (1.0.0) … … 209 209 * @param array $args { 210 210 * Array of parameters. 211 * @type int $pag_num Number of notices per page. Defaults to 20.211 * @type int $pag_num Number of notices per page. Defaults to 20. 212 212 * @type int $pag_page The page number. Defaults to 1. 213 213 * } … … 256 256 * @since BuddyPress (1.0.0) 257 257 * 258 * @return object The BP_Messages_Notice object 258 * @return object The BP_Messages_Notice object. 259 259 */ 260 260 public static function get_active() {
Note: See TracChangeset
for help on using the changeset viewer.