WooCommerce
1 week ago
AndStrategy.php
1 week ago
ConstantDefinedStrategy.php
1 week ago
ConstantNotDefinedStrategy.php
1 week ago
GetStrategy.php
1 week ago
OrStrategy.php
1 week ago
PostTypeStrategy.php
1 week ago
ShouldShowStrategy.php
1 week 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 |