Home
last modified time | relevance | path

Searched refs:possibleValues (Results 1 – 5 of 5) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DEnumPropertyOptions.php63 public function setPossibleValues($possibleValues) argument
65 $this->possibleValues = $possibleValues;
72 return $this->possibleValues;
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataText.php65 $possibleValues = $this->getPossibleValues();
66 if ($possibleValues !== null) {
67 if (!in_array($value, $possibleValues)) {
68 throw new ExceptionBadArgument("The value ($value) for the metadata ({$this->getName()}) is not one of the possible following values: " . implode(", ", $possibleValues) . ".");
H A DMetadataMultiple.php125 $possibleValues = $this->getPossibleValues();
126 if ($possibleValues !== null) {
128 if (!in_array($value, $possibleValues)) {
129 throw new ExceptionBadArgument("The value ($value) for ($this) is not a possible value (" . implode(",", $possibleValues) . ")", $this->getCanonical());
/plugin/combo/ComboStrap/
H A DHorizontal.php53 $possibleValues = self::VALUES;
55 $possibleValues = Horizontal::VALUES;
57 if (!in_array($valueWithoutBreakpoint, $possibleValues)) {
58 LogUtility::error("The $attributeName attribute value ($valueWithoutBreakpoint) is not good. It should be one of: " . implode(", ", $possibleValues), self::CANONICAL);
/plugin/combo/ComboStrap/Meta/Form/
H A DFormMetaField.php551 $possibleValues = $metadata->getPossibleValues();
552 if ($possibleValues !== null) {
553 $field->setDomainValues($possibleValues);