BP_Invitation::mark_sent( int $id, array $args = array() )

Mark specific invitations as sent by invitation ID.


Description Description


Parameters Parameters

$id

(Required) The ID of the invitation to mark as sent.

$args

(Optional) Invitation characteristics used to override certain sending behaviors.

  • 'date_modified'
    (string) Modified time in 'Y-m-d h:i:s' format, GMT. Defaults to current time if not specified.

Default value: array()


Top ↑

Return Return

(int|bool) The number of rows updated, or false on error.


Top ↑

Source Source

File: bp-core/classes/class-bp-invitation.php

	public static function mark_sent( $id = 0 ) {

		if ( ! $id ) {
			return false;
		}

		// Values to be updated
		$update_args = array(
			'invite_sent' => 'sent',
		);

		// WHERE clauses
		$where_args = array(
			'id' => $id,
		);

		return self::update( $update_args, $where_args );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.