WP_Privacy_Requests_Table::column_status( WP_User_Request $item ): string

In this article

Status column.

Parameters

$itemWP_User_Requestrequired
Item being shown.

Return

string Status column markup.

Source

public function column_status( $item ) {
	$status        = get_post_status( $item->ID );
	$status_object = get_post_status_object( $status );

	if ( ! $status_object || empty( $status_object->label ) ) {
		return '-';
	}

	$timestamp = false;

	switch ( $status ) {
		case 'request-confirmed':
			$timestamp = $item->confirmed_timestamp;
			break;
		case 'request-completed':
			$timestamp = $item->completed_timestamp;
			break;
	}

	echo '<span class="status-label status-' . esc_attr( $status ) . '">';
	echo esc_html( $status_object->label );

	if ( $timestamp ) {
		echo ' (' . $this->get_timestamp_as_date( $timestamp ) . ')';
	}

	echo '</span>';
}

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

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