Automattic\WooCommerce\Internal\Admin\ProductReviews

ReviewsListTable::__construct()publicWC 1.0

Constructor.

Метод класса: ReviewsListTable{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ReviewsListTable = new ReviewsListTable();
$ReviewsListTable->__construct( $args );
$args(массив|строка)
Array or string of arguments.
По умолчанию: []

Код ReviewsListTable::__construct() WC 8.7.0

public function __construct( $args = [] ) {
	parent::__construct(
		wp_parse_args(
			$args,
			[
				'plural'   => 'product-reviews',
				'singular' => 'product-review',
			]
		)
	);

	$this->current_user_can_moderate_reviews = current_user_can( Reviews::get_capability( 'moderate' ) );
}