19 lines
371 B
PHP
19 lines
371 B
PHP
<?php
|
|
|
|
namespace FSVendor\WPDesk\ShowDecision;
|
|
|
|
class ConstantDefinedStrategy implements ShouldShowStrategy
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
private string $constant;
|
|
public function __construct(string $constant)
|
|
{
|
|
$this->constant = $constant;
|
|
}
|
|
public function shouldDisplay(): bool
|
|
{
|
|
return defined($this->constant);
|
|
}
|
|
}
|