WC_Widget_Recent_Reviews::__construct()publicWC 1.0

Constructor.

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

Хуков нет.

Возвращает

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

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

$WC_Widget_Recent_Reviews = new WC_Widget_Recent_Reviews();
$WC_Widget_Recent_Reviews->__construct();

Код WC_Widget_Recent_Reviews::__construct() WC 8.7.0

public function __construct() {
	$this->widget_cssclass    = 'woocommerce widget_recent_reviews';
	$this->widget_description = __( 'Display a list of recent reviews from your store.', 'woocommerce' );
	$this->widget_id          = 'woocommerce_recent_reviews';
	$this->widget_name        = __( 'Recent Product Reviews', 'woocommerce' );
	$this->settings           = array(
		'title'  => array(
			'type'  => 'text',
			'std'   => __( 'Recent reviews', 'woocommerce' ),
			'label' => __( 'Title', 'woocommerce' ),
		),
		'number' => array(
			'type'  => 'number',
			'step'  => 1,
			'min'   => 1,
			'max'   => '',
			'std'   => 10,
			'label' => __( 'Number of reviews to show', 'woocommerce' ),
		),
	);

	parent::__construct();
}