skeeks\cms\relatedProperties\propertyTypes\PropertyTypeElement::getIsMultiple PHP Method

getIsMultiple() public method

public getIsMultiple ( ) : boolean
return boolean
    public function getIsMultiple()
    {
        if (in_array($this->fieldElement, [self::FIELD_ELEMENT_SELECT_MULTI, self::FIELD_ELEMENT_CHECKBOX_LIST])) {
            return true;
        }
        return false;
    }