Home
last modified time | relevance | path

Searched refs:attribute (Results 76 – 100 of 449) sorted by last modified time

12345678910>>...18

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManufacturerCenter/
H A DIssue.php25 public $attribute; variable in Google\\Service\\ManufacturerCenter\\Issue
58 public function setAttribute($attribute) argument
60 $this->attribute = $attribute;
67 return $this->attribute;
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md11 …* Added `AsMonologProcessor` PHP attribute which can help autowiring / autoconfiguration of proces…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Eventarc/
H A DFilteringAttribute.php25 public $attribute; variable in Google\\Service\\Eventarc\\FilteringAttribute
42 public function setAttribute($attribute) argument
44 $this->attribute = $attribute;
51 return $this->attribute;
H A DEventFilter.php25 public $attribute; variable in Google\\Service\\Eventarc\\EventFilter
38 public function setAttribute($attribute) argument
40 $this->attribute = $attribute;
47 return $this->attribute;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md134 - `InflateStream` preserves `isSeekable` attribute of the underlying stream
219 - `ServerRequest::withoutAttribute` when attribute value is null.
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1Attributes.php29 public function setAttribute($attribute) argument
31 $this->attribute = $attribute;
38 return $this->attribute;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md637 * Updated the `$ref` attribute in service descriptions to merge over any existing parameters of a s…
1171 * Allowing dot notation for class paths in filters attribute of a service descriptions
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyer/
H A DCreative.php35 public $attribute; variable in Google\\Service\\AdExchangeBuyer\\Creative
133 public function setAttribute($attribute) argument
135 $this->attribute = $attribute;
139 return $this->attribute;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php3512 foreach ($attributes as $key => $attribute) {
3513 if ($attribute['type'] == $id) {
3514 $n = count($attribute['value']);
3566 foreach ($attributes as $key => $attribute) {
3567 if ($attribute['type'] == $id) {
3568 $n = count($attribute['value']);
3574 return $attribute['value'];
3604 foreach ($attributes as $attribute) {
3605 $attrs[] = $attribute['type'];
3639 if ($attribute['type'] == $id) {
[all …]
/plugin/layeranimation/
H A DREADME.md43 …sing the optional clipping you can set the viewport of an item (the CSS attribute "clip" will be u…
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md130 # Add a value to an attribute
134 # Remove any values an attribute may have
138 # Delete a specific value for an attribute
142 # Set a value for an attribute. This replaces any value it may, or may not, have.
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntry.php55 * Add an attribute and its values.
57 * @param string|Attribute $attribute
61 public function add($attribute, ...$values)
63 $attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
65 if (($exists = $this->get($attribute, true)) !== null) {
66 $exists->add(...$attribute->getValues());
68 $this->attributes[] = $attribute;
53 add($attribute, ...$values) global() argument
74 remove($attribute, ...$values) global() argument
117 set($attribute, ...$values) global() argument
144 get($attribute, bool $strict = false) global() argument
164 has($attribute, bool $strict = false) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php226 foreach ($attributes as $attribute) {
227 $attr[] = $attribute instanceof Attribute ? $attribute : new Attribute($attribute);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSearchRequest.php233 foreach ($attributes as $attribute) {
234 $attr[] = $attribute instanceof Attribute ? $attribute : new Attribute($attribute);
414 foreach ($attributes->getChildren() as $attribute) {
415 if (!$attribute instanceof OctetStringType) {
418 $attrList[] = new Attribute($attribute->getValue());
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php104 foreach ($this->entry->getAttributes() as $attribute) {
106 Asn1::octetString($attribute->getDescription()),
109 }, $attribute->getValues()))
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerRootDseHandler.php117 foreach ($request->getAttributes() as $attribute) {
118 if ($attribute->equals($dseAttr)) {
133 foreach ($entry->getAttributes() as $attribute) {
134 $attribute->reset();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php26 * Common methods for filters using attribute value assertions.
40 * @param string $attribute argument
43 public function __construct(string $attribute, string $value)
45 $this->attribute = $attribute;
74 Asn1::octetString($this->attribute),
85 . $this->attribute
103 throw new ProtocolException('The attribute value assertion is malformed.');
106 $attribute = $type->getChild(0);
108 if (!($attribute instanceo
[all...]
H A DFilterAttributeTrait.php24 protected $attribute;
31 return $this->attribute;
35 * @param string $attribute
38 public function setAttribute(string $attribute)
40 $this->attribute = $attribute;
23 protected $attribute; global() variable
37 setAttribute(string $attribute) global() argument
H A DMatchingRuleFilter.php48 protected $attribute;
62 * @param null|string $attribute
66 public function __construct(?string $matchingRule, ?string $attribute, string $value, bool $useDnAttributes = false)
69 $this->attribute = $attribute;
79 return $this->attribute;
83 * @param null|string $attribute
86 public function setAttribute(?string $attribute)
88 $this->attribute = $attribute;
46 protected $attribute; global() variable in FreeDSx\\Ldap\\Search\\Filter\\MatchingRuleFilter
64 __construct(string $matchingRule, string $attribute, string $value, bool $useDnAttributes = false) global() argument
84 setAttribute(string $attribute) global() argument
[all...]
H A DPresentFilter.php23 * Checks for the presence of an attribute (ie. whether or not it contains a value). RFC 4511, 4.5.1.7.5
34 * @param string $attribute argument
36 public function __construct(string $attribute)
38 $this->attribute = $attribute;
46 return Asn1::context(self::APP_TAG, Asn1::octetString($this->attribute));
54 return self::PAREN_LEFT . $this->attribute . self::FILTER_EQUAL . '*' . self::PAREN_RIGHT;
H A DSubstringFilter.php60 * @param string $attribute
65 public function __construct(string $attribute, ?string $startsWith = null, ?string $endsWith = null, string ...$contains)
67 $this->attribute = $attribute;
165 Asn1::octetString($this->attribute),
175 $filter = self::PAREN_LEFT . $this->attribute . self::FILTER_EQUAL;
63 __construct(string $attribute, string $startsWith = null, string $endsWith = null, string...$contains) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilterParser.php192 $attribute = substr(
203 if ($attribute === '') {
205 'The attribute is missing in the filter near position %s.',
210 return [$endAt, $this->getComparisonFilterObject((string) $filterType, $attribute, $value)];
277 * @param string $attribute
283 protected function getComparisonFilterObject(string $operator, string $attribute, string $value): FilterInterface
286 return Filters::lessThanOrEqual($attribute, $this->unescapeValue($value));
288 return Filters::greaterThanOrEqual($attribute, $this->unescapeValue($value));
290 return Filters::approximate($attribute, $this->unescapeValue($value));
292 return $this->getMatchingRuleFilterObject($attribute,
275 getComparisonFilterObject(string $operator, string $attribute, string $value) global() argument
304 getMatchingRuleFilterObject(string $attribute, string $value) global() argument
339 getSubstringFilterObject(string $attribute, string $value) global() argument
[all...]
H A DFilters.php59 * @param string $attribute
63 public static function equal(string $attribute, string $value): EqualityFilter
65 return new EqualityFilter($attribute, $value);
82 * @param string $attribute
86 public static function greaterThanOrEqual(string $attribute, string $value): GreaterThanOrEqualFilter
88 return new GreaterThanOrEqualFilter($attribute, $value);
94 * @param string $attribute
98 public static function gte(string $attribute, string $value): GreaterThanOrEqualFilter
100 return self::greaterThanOrEqual($attribute, $value);
106 * @param string $attribute
61 equal(string $attribute, string $value) global() argument
84 greaterThanOrEqual(string $attribute, string $value) global() argument
96 gte(string $attribute, string $value) global() argument
108 lessThanOrEqual(string $attribute, string $value) global() argument
120 lte(string $attribute, string $value) global() argument
131 present(string $attribute) global() argument
145 substring(string $attribute, string $startsWith, string $endsWith, string...$contains) global() argument
157 contains(string $attribute, string...$values) global() argument
169 endsWith(string $attribute, string $value) global() argument
181 startsWith(string $attribute, string $value) global() argument
195 extensible(string $attribute, string $value, string $rule, bool $matchDn = false) global() argument
207 approximate(string $attribute, string $value) global() argument
[all...]
H A DRangeRetrieval.php23 * Provides simple helper APIs for retrieving ranged results for an entry attribute.
25 * @see https://docs.microsoft.com/en-us/windows/desktop/adsi/attribute-range-retrieval
44 * Get a specific ranged attribute by name from an entry. If it does not exist it will return null.
46 * @param string|Attribute $attribute argument
48 public function getRanged(Entry $entry, $attribute): ?Attribute
50 $attribute = $attribute instanceof Attribute ? new Attribute($attribute->getName()) : new Attribute($attribute);
53 if ($rangedAttribute->equals($attribute)) {
92 hasRanged(Entry $entry, $attribute = null) global() argument
103 hasMoreValues(Attribute $attribute) global() argument
122 getMoreValues($entry, Attribute $attribute, $amount = '*') global() argument
161 getAllValues($entry, $attribute) global() argument
189 getRangeOption(Attribute $attribute) global() argument
[all...]
/plugin/pureldap/classes/
H A DClient.php307 * Helper method to get the first value of the given attribute
309 * The given attribute may be null, an empty string is returned then
311 * @param Attribute|null $attribute
314 protected function attr2str($attribute)
316 if ($attribute !== null) {
317 return $attribute->firstValue();
338 foreach ($this->config['attributes'] as $attribute) {
339 $attr[] = new Attribute($attribute);
290 attr2str($attribute) global() argument

12345678910>>...18