WP_Privacy_Requests_Table::column_status( WP_User_Request $item ): string

Status column.


Parameters

$item WP_User_Request Required
Item being shown.

Top ↑

Return

string Status column markup.


Top ↑

Source

File: wp-admin/includes/class-wp-privacy-requests-table.php. View all references

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>';
}


Top ↑

Changelog

Changelog
Version Description
4.9.6 Introduced.

Top ↑

User Contributed Notes

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