WooCommerce
2 weeks ago
AndStrategy.php
2 weeks ago
ConstantDefinedStrategy.php
2 weeks ago
ConstantNotDefinedStrategy.php
2 weeks ago
GetStrategy.php
2 weeks ago
OrStrategy.php
2 weeks ago
PostTypeStrategy.php
2 weeks ago
ShouldShowStrategy.php
2 weeks ago
ConstantDefinedStrategy.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FSVendor\WPDesk\ShowDecision; |
| 4 | |
| 5 | class ConstantDefinedStrategy implements ShouldShowStrategy |
| 6 | { |
| 7 | /** |
| 8 | * @var string |
| 9 | */ |
| 10 | private string $constant; |
| 11 | public function __construct(string $constant) |
| 12 | { |
| 13 | $this->constant = $constant; |
| 14 | } |
| 15 | public function shouldDisplay(): bool |
| 16 | { |
| 17 | return defined($this->constant); |
| 18 | } |
| 19 | } |
| 20 |