Home
last modified time | relevance | path

Searched refs:attribute (Results 1 – 25 of 508) sorted by relevance

12345678910>>...21

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DChange.php46 protected $attribute; variable in FreeDSx\\Ldap\\Entry\\Change
50 * @param string|Attribute $attribute
53 public function __construct(int $modType, $attribute, ...$values) argument
56 …$this->attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$va…
64 return $this->attribute;
68 * @param Attribute $attribute
71 public function setAttribute(Attribute $attribute) argument
73 $this->attribute = $attribute;
110 return $this->modType === self::TYPE_DELETE && count($this->attribute->getValues()) !== 0;
126 return $this->modType === self::TYPE_DELETE && count($this->attribute->getValues()) === 0;
[all …]
H A DEntry.php57 * @param string|Attribute $attribute
61 public function add($attribute, ...$values) argument
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;
70 $this->changes->add(Change::add(clone $attribute));
78 * @param string|Attribute $attribute
82 public function remove($attribute, ...$values) argument
84 … $attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
[all …]
H A DAttribute.php49 protected $attribute; variable in FreeDSx\\Ldap\\Entry\\Attribute
67 * @param string $attribute
70 public function __construct(string $attribute, ...$values) argument
72 $this->attribute = $attribute;
153 return $this->attribute;
234 * @param Attribute $attribute
238 public function equals(Attribute $attribute, bool $strict = false): bool argument
241 $attribute->options();
243 $this->lcAttribute = strtolower($this->attribute);
245 if ($attribute->lcAttribute === null) {
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DRangeRetrieval.php46 * @param string|Attribute $attribute
48 public function getRanged(Entry $entry, $attribute): ?Attribute argument
50 …$attribute = $attribute instanceof Attribute ? new Attribute($attribute->getName()) : new Attribut…
53 if ($rangedAttribute->equals($attribute)) {
72 foreach ($entry->getAttributes() as $attribute) {
73 if (!$attribute->hasOptions()) {
77 foreach ($attribute->getOptions() as $option) {
79 $ranged[] = $attribute;
92 * @param Attribute|string|null $attribute
95 public function hasRanged(Entry $entry, $attribute = null): bool argument
[all …]
H A DFilters.php59 * @param string $attribute
63 public static function equal(string $attribute, string $value): EqualityFilter argument
65 return new EqualityFilter($attribute, $value);
82 * @param string $attribute
86 …public static function greaterThanOrEqual(string $attribute, string $value): GreaterThanOrEqualFil… argument
88 return new GreaterThanOrEqualFilter($attribute, $value);
94 * @param string $attribute
98 public static function gte(string $attribute, string $value): GreaterThanOrEqualFilter argument
100 return self::greaterThanOrEqual($attribute, $value);
106 * @param string $attribute
[all …]
/plugin/columns/
Dsyntax.php161 public function render($state, Doku_Renderer $renderer, $attribute) { argument
164 $this->render_enter($renderer, $attribute);
168 $this->render_matched($renderer, $attribute);
172 $this->render_exit($renderer, $attribute);
177 abstract protected function render_enter(Doku_Renderer $renderer, $attribute); argument
178 abstract protected function render_matched(Doku_Renderer $renderer, $attribute); argument
179 abstract protected function render_exit(Doku_Renderer $renderer, $attribute); argument
184 protected function getAttribute($attribute, $name) { argument
186 if (array_key_exists($name, $attribute)) {
187 $result = $attribute[$name];
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortKey.php24 protected $attribute; variable in FreeDSx\\Ldap\\Control\\Sorting\\SortKey
37 * @param string $attribute
41 …public function __construct(string $attribute, bool $useReverseOrder = false, ?string $orderingRul… argument
43 $this->attribute = $attribute;
53 return $this->attribute;
57 * @param string $attribute
60 public function setAttribute(string $attribute) argument
62 $this->attribute = $attribute;
108 * @param string $attribute
112 public static function ascending(string $attribute, ?string $matchRule = null) argument
[all …]
H A DSortingResponseControl.php62 protected $attribute; variable in FreeDSx\\Ldap\\Control\\Sorting\\SortingResponseControl
66 * @param null|string $attribute
68 public function __construct(int $result, ?string $attribute = null) argument
71 $this->attribute = $attribute;
88 return $this->attribute;
104 $attribute = $sorting->getChild(1);
111 ($attribute !== null) ? $attribute->getValue() : null
123 if ($this->attribute !== null) {
124 $this->controlValue->addChild(Asn1::context(0, Asn1::octetString($this->attribute)));
/plugin/refnotes/syntax/
Dnotes.php119 $attribute = $this->parseAttributes($match[1]);
127 return array('split', $attribute, $style);
130 return array('render', $attribute);
143 $attribute = array();
148 $attribute[$name][] = $t;
154 if (array_key_exists('ns', $attribute)) {
156 $attribute['ns'] = array_map('refnotes_namespace::canonizeName', $attribute['ns']);
158 if (count($attribute['ns']) > 1) {
159 $attribute['map'] = array_slice($attribute['ns'], 1);
162 $attribute['ns'] = $attribute['ns'][0];
[all …]
/plugin/scrape/vendor/symfony/css-selector/XPath/Extension/
DAttributeMatchingExtension.php46 public function translateExists(XPathExpr $xpath, string $attribute, ?string $value): XPathExpr argument
48 return $xpath->addCondition($attribute);
51 public function translateEquals(XPathExpr $xpath, string $attribute, ?string $value): XPathExpr argument
53 … return $xpath->addCondition(sprintf('%s = %s', $attribute, Translator::getXpathLiteral($value)));
56 … public function translateIncludes(XPathExpr $xpath, string $attribute, ?string $value): XPathExpr argument
60 $attribute,
65 … public function translateDashMatch(XPathExpr $xpath, string $attribute, ?string $value): XPathExpr argument
69 $attribute,
75 …public function translatePrefixMatch(XPathExpr $xpath, string $attribute, ?string $value): XPathEx… argument
79 $attribute,
[all …]
/plugin/twofactor/
DSettings.php14 protected $attribute; variable in dokuwiki\\plugin\\twofactor\\Settings
28 $this->attribute = plugin_load('helper', 'attribute');
29 if ($this->attribute === null) throw new \RuntimeException('attribute plugin not found');
30 $this->attribute->setSecure(false);
45 $attribute = plugin_load('helper', 'attribute');
46 if ($attribute === null) throw new \RuntimeException('attribute plugin not found');
48 return $attribute->enumerateUsers($module);
69 return $this->attribute->exists($this->providerID, $key, $this->user);
82 $data = $this->attribute->get($this->providerID, $key, $success, $this->user);
96 return $this->attribute->set($this->providerID, $key, $value, $this->user);
[all …]
/plugin/scrape/vendor/symfony/css-selector/Node/
DAttributeNode.php28 private $attribute; variable in Symfony\\Component\\CssSelector\\Node\\AttributeNode
32 …public function __construct(NodeInterface $selector, ?string $namespace, string $attribute, string… argument
36 $this->attribute = $attribute;
53 return $this->attribute;
76 $attribute = $this->namespace ? $this->namespace.'|'.$this->attribute : $this->attribute;
79 ? sprintf('%s[%s[%s]]', $this->getNodeName(), $this->selector, $attribute)
80 …: sprintf("%s[%s[%s %s '%s']]", $this->getNodeName(), $this->selector, $attribute, $this->operator…
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Dattribute.rst1 ``attribute``
5 The ``attribute`` function was added in Twig 1.2.
7 The ``attribute`` function can be used to access a "dynamic" attribute of a
12 {{ attribute(object, method) }}
13 {{ attribute(object, method, arguments) }}
14 {{ attribute(array, item) }}
17 attribute:
21 {{ attribute(object, method) is defined ? 'Method exists' : 'Method does not exist' }}
/plugin/barcodes/
DCHANGELOG.md14 * Added `logo` attribute
18 * Fixed `img-type` attribute was ignored
23 * Added `size` attribute
24 * Added `scale` attribute
25 * Added `padding` attribute
38 * Added `img-type` attribute
39 * Added `color` attribute
40 * Added `background-color` attribute
/plugin/dirtylittlehelper/mermaid/editor/docs/
D24.24.js1attribute.value"],[/'([^']*)'/,"attribute.value"],[/[\w\-]+/,"attribute.name"],[/=/,"delimiter"],[…
D65.65.js1attribute.value.html"],[/'([^']*)'/,"attribute.value.html"],[/[\w\-]+/,"attribute.name.html"],[/=/…
D22.22.js1attribute.value"],[/'([^']*)'/,"attribute.value"],[/[\w\-]+/,"attribute.name"],[/=/,"delimiter"],[…
D41.41.js1attribute.value"],[/'([^']*)'/,"attribute.value"],[/[\w\-]+/,"attribute.name"],[/=/,"delimiter"],[…
/plugin/adfs/phpsaml/lib/Saml2/
DMetadata.php115 foreach ($sp['attributeConsumingService']['requestedAttributes'] as $attribute) {
116 …equestedAttributeStr = sprintf(' <md:RequestedAttribute Name="%s"', $attribute['name']);
117 if (isset($attribute['nameFormat'])) {
118 $requestedAttributeStr .= sprintf(' NameFormat="%s"', $attribute['nameFormat']);
120 if (isset($attribute['friendlyName'])) {
121 … $requestedAttributeStr .= sprintf(' FriendlyName="%s"', $attribute['friendlyName']);
123 if (isset($attribute['isRequired'])) {
124 …$requestedAttributeStr .= sprintf(' isRequired="%s"', $attribute['isRequired'] === true ? 'true' :…
128 if (isset($attribute['attributeValue']) && !empty($attribute['attributeValue'])) {
130 if (is_string($attribute['attributeValue'])) {
[all …]
/plugin/saml/phpsaml/lib/Saml2/
DMetadata.php115 foreach ($sp['attributeConsumingService']['requestedAttributes'] as $attribute) {
116 …equestedAttributeStr = sprintf(' <md:RequestedAttribute Name="%s"', $attribute['name']);
117 if (isset($attribute['nameFormat'])) {
118 $requestedAttributeStr .= sprintf(' NameFormat="%s"', $attribute['nameFormat']);
120 if (isset($attribute['friendlyName'])) {
121 … $requestedAttributeStr .= sprintf(' FriendlyName="%s"', $attribute['friendlyName']);
123 if (isset($attribute['isRequired'])) {
124 …$requestedAttributeStr .= sprintf(' isRequired="%s"', $attribute['isRequired'] === true ? 'true' :…
128 if (isset($attribute['attributeValue']) && !empty($attribute['attributeValue'])) {
130 if (is_string($attribute['attributeValue'])) {
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DMatchingRuleFilter.php48 protected $attribute; variable in FreeDSx\\Ldap\\Search\\Filter\\MatchingRuleFilter
62 * @param null|string $attribute
66 …public function __construct(?string $matchingRule, ?string $attribute, string $value, bool $useDnA… argument
69 $this->attribute = $attribute;
79 return $this->attribute;
83 * @param null|string $attribute
86 public function setAttribute(?string $attribute) argument
88 $this->attribute = $attribute;
161 if ($this->attribute !== null) {
162 $matchingRule->addChild(Asn1::context(2, Asn1::octetString($this->attribute)));
[all …]
H A DFilterAttributeTrait.php24 protected $attribute; variable
31 return $this->attribute;
35 * @param string $attribute
38 public function setAttribute(string $attribute) argument
40 $this->attribute = $attribute;
H A DAttributeValueAssertionTrait.php40 * @param string $attribute
43 public function __construct(string $attribute, string $value) argument
45 $this->attribute = $attribute;
74 Asn1::octetString($this->attribute),
85 . $this->attribute
106 $attribute = $type->getChild(0);
108 if (!($attribute instanceof OctetStringType && $value instanceof OctetStringType)) {
112 return new static($attribute->getValue(), $value->getValue());
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
Dattribute.test2 "attribute" function
4 {{ attribute(obj, method) }}
5 {{ attribute(array, item) }}
6 {{ attribute(obj, "bar", ["a", "b"]) }}
7 {{ attribute(obj, "bar", arguments) }}
8 {{ attribute(obj, method) is defined ? 'ok' : 'ko' }}
9 {{ attribute(obj, nonmethod) is defined ? 'ok' : 'ko' }}
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
DAccessorSetter.php71 protected $attribute; variable in JMS\\Serializer\\Tests\\Fixtures\\AccessorSetterElement
87 return $this->attribute;
91 * @param string $attribute
93 public function setAttributeDifferent($attribute) argument
95 $this->attribute = $attribute . '-different';

12345678910>>...21