Automattic\WooCommerce\Internal\Admin\ProductReviews
ReviewsCommentsOverrides::__construct()
Constructor.
Метод класса: ReviewsCommentsOverrides{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$ReviewsCommentsOverrides = new ReviewsCommentsOverrides(); $ReviewsCommentsOverrides->__construct();
Код ReviewsCommentsOverrides::__construct() ReviewsCommentsOverrides:: construct WC 9.8.2
public function __construct() { add_action( 'admin_notices', array( $this, 'display_notices' ) ); add_filter( 'woocommerce_dismiss_admin_notice_capability', array( $this, 'get_dismiss_capability' ), 10, 2 ); add_filter( 'comments_list_table_query_args', array( $this, 'exclude_reviews_from_comments' ) ); }