Your IP : 216.73.216.240


Current Path : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/types/
Upload File :
Current File : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/types/operatorin.php

<?php

namespace AcyMailing\Types;

use AcyMailing\Libraries\acymObject;

class OperatorinType extends acymObject
{
    public $values = [];
    public $attributes = [];

    public function __construct()
    {
        parent::__construct();

        $this->values[] = acym_selectOption('in', 'ACYM_IN');
        $this->values[] = acym_selectOption('not-in', 'ACYM_NOT_IN');
    }

    public function display($name, $valueSelected = '')
    {
        $operatorType = new OperatorType();
        $operatorType->values = $this->values;
        $operatorType->attributes = $this->attributes;

        return $operatorType->display($name, $valueSelected);
    }
}