messages_notice_before_delete, $this

messages_notice_before_delete, $this

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: buddypress.14.5.2

do_action('messages_notice_before_delete, $this') is found 1 times:

  • /bp-messages/classes/class-bp-messages-notice.php line 198
    		 * @since 1.0.0
    		 *
    		 * @param BP_Messages_Notice $notice Current instance of the message notice item being deleted.
    		 */
    		do_action( 'messages_notice_before_delete', $this );
    
    		$bp  = buddypress();
    		$sql = $wpdb->prepare( "DELETE FROM {$bp->messages->table_name_notices} WHERE id = %d", $this->id );
    
    		if ( ! $wpdb->query( $sql ) ) {
    			return false;