Automattic\WooCommerce\Internal\Admin\ProductReviews

ReviewsListTable::get_primary_column_name()protectedWC 1.0

Gets the name of the default primary column.

Method of the class: ReviewsListTable{}

No Hooks.

Return

String. Name of the primary colum.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_primary_column_name() : string;

ReviewsListTable::get_primary_column_name() code WC 8.7.0

protected function get_primary_column_name() : string {
	return 'comment';
}