| 1 |
<?php |
| 2 |
|
| 3 |
namespace AcyMailing\Types; |
| 4 |
|
| 5 |
use AcyMailing\Core\AcymObject; |
| 6 |
|
| 7 |
class OperatorInType extends AcymObject |
| 8 |
{ |
| 9 |
public function display(string $name): string |
| 10 |
{ |
| 11 |
$operatorType = new OperatorType(); |
| 12 |
$operatorType->values = [ |
| 13 |
acym_selectOption('in', 'ACYM_IN'), |
| 14 |
acym_selectOption('not-in', 'ACYM_NOT_IN'), |
| 15 |
]; |
| 16 |
|
| 17 |
return $operatorType->display($name); |
| 18 |
} |
| 19 |
} |
| 20 |
|