You appear to be a bot. Output may be restricted
Description
Determines whether or not the notice should be displayed.
Typically individual notices should not override this method, as it combines a dismissal check and custom display logic (`_should_display()`). Custom logic should go in `_should_display()`.
Usage
$bool = Notice::should_display();
Parameters
Returns
bool
Source
File name: easy-digital-downloads/includes/admin/promos/notices/abstract-notice.php
Lines:
1 to 3 of 3
public function should_display() { return current_user_can( static::CAPABILITY ) && ! PromoHandler::is_dismissed( $this->get_id() ) && $this->_should_display(); }