Searched refs:possibleValues (Results 1 – 5 of 5) sorted by relevance
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/ |
H A D | EnumPropertyOptions.php | 63 public function setPossibleValues($possibleValues) argument 65 $this->possibleValues = $possibleValues; 72 return $this->possibleValues;
|
/plugin/combo/ComboStrap/Meta/Api/ |
H A D | MetadataText.php | 68 $possibleValues = $this->getPossibleValues(); 69 if ($possibleValues !== null) { 70 if (!in_array($value, $possibleValues)) { 71 throw new ExceptionBadArgument("The value ($value) for the metadata ({$this->getName()}) is not one of the possible following values: " . implode(", ", $possibleValues) . ".");
|
H A D | MetadataMultiple.php | 125 $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 D | Horizontal.php | 53 $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 D | FormMetaField.php | 551 $possibleValues = $metadata->getPossibleValues(); 552 if ($possibleValues !== null) { 553 $field->setDomainValues($possibleValues);
|