Home
last modified time | relevance | path

Searched refs:attributes (Results 276 – 300 of 644) sorted by last modified time

1...<<11121314151617181920>>...26

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Pubsub/
H A DPubsubMessage.php25 public $attributes; variable in Google\\Service\\Pubsub\\PubsubMessage
46 public function setAttributes($attributes) argument
48 $this->attributes = $attributes;
55 return $this->attributes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1p2beta1TimestampedObject.php37 public function setAttributes($attributes) argument
39 $this->attributes = $attributes;
46 return $this->attributes;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRetail/
H A DGoogleCloudRetailV2CompleteQueryResponseCompletionResult.php32 public function setAttributes($attributes) argument
34 $this->attributes = $attributes;
41 return $this->attributes;
/plugin/c3chart/assets/
H A Dc3.min.js2attributes:!0,childList:!0,characterData:!0}):window.console.error("MutationObserver not defined."… property in AnonymousFunctionca6b16e916400._mutationObserverConfig
/plugin/c3chart/
H A DREADME.md61attributes to customize the appearance of the chart. The attributes are separated by spaces, each …
/plugin/vshare/
H A Dscript.js67 // create an iframe and copy over the attributes
70 let attributes = Array.prototype.slice.call(this.attributes);
71 while(attr = attributes.pop()) {
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js1839 attrMap = node.attributes;
9729 var attributes = node.attributes,
9983 attributes = node.attributes;
10279 attributes: decodedAttrs, property in AnonymousFunctionf8d14cd111c00.node
10726 var attributes = [];
10749 return attributes;
10801 var attributes = [];
10811 attributes.push(nonNsAttr);
10815 return attributes;
11095 return attributes;
[all …]
H A Dbpmn-modeler.production.min.js2 …break;case 1:if(t.push("<",e.tagName),e.hasAttributes())for(n=0,i=(r=e.attributes).length;n<i;++n)…
7attributes,i=this.type,r=Oi(i),o=this.context,a=new i({}),s=this.model;return b(n,(function(e,n){v…
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md112 # Optionally pass an array of attributes to select as the second argument.
127 # Search for an entry object to get its current attributes / values
H A DCHANGELOG.md32 * Added a firstValue() and lastValue() method for attributes.
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntry.php31 protected $attributes;
45 * @param Attribute ...$attributes
47 public function __construct($dn, Attribute ...$attributes)
50 $this->attributes = $attributes;
68 $this->attributes[] = $attribute;
99 * @param string|Attribute ...$attributes
102 public function reset(...$attributes)
104 foreach ($attributes as $attribute) {
106 foreach ($this->attributes a
23 protected $attributes; global() variable in FreeDSx\\Ldap\\Entry\\Entry
39 __construct($dn, Attribute...$attributes) global() argument
94 reset(...$attributes) global() argument
264 create(string $dn, array $attributes = []) global() argument
276 fromArray(string $dn, array $attributes = []) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php76 protected $attributes = [];
216 return $this->attributes;
220 * @param string|Attribute ...$attributes
223 public function setAttributes(...$attributes)
226 foreach ($attributes as $attribute) {
229 $this->attributes = $attr;
368 if (count($this->attributes) !== 0) {
372 }, $this->attributes));
62 protected $attributes = []; global() variable in FreeDSx\\Ldap\\LdapUrl
208 setAttributes(...$attributes) global() argument
H A DOperations.php189 * @param string|Attribute ...$attributes
191 public static function search(FilterInterface $filter, ...$attributes): SearchRequest
193 return new SearchRequest($filter, ...$attributes);
200 * @param string|Attribute ...$attributes
202 public static function read(string $baseDn, ...$attributes): SearchRequest
204 return (new SearchRequest(Filters::present('objectClass'), ...$attributes))->base($baseDn)->useBaseScope();
210 * @param string|Attribute ...$attributes
212 public static function list(FilterInterface $filter, string $baseDn, ...$attributes): SearchRequest
214 return (new SearchRequest($filter, ...$attributes))->base($baseDn)->useSingleLevelScope();
187 search(FilterInterface $filter, ...$attributes) global() argument
198 read(string $baseDn, ...$attributes) global() argument
208 list(FilterInterface $filter, string $baseDn, ...$attributes) global() argument
H A DLdapClient.php150 * @param string[] $attributes
155 public function read(string $entry = '', $attributes = [], Control ...$controls): ?Entry
158 return $this->readOrFail($entry, $attributes, ...$controls);
171 * @param string[] $attributes
176 public function readOrFail(string $entry = '', $attributes = [], Control ...$controls): Entry
178 $entryObj = $this->search(Operations::read($entry, ...$attributes), ...$controls)->first();
291 * @param mixed ...$attributes
294 public function dirSync(?string $rootNc = null, FilterInterface $filter = null, ...$attributes): DirSync
296 return new DirSync($this, $rootNc, $filter, ...$attributes);
377 * Get a helper class for handling ranged attributes
151 read(string $entry = '', $attributes = [], Control...$controls) global() argument
172 readOrFail(string $entry = '', $attributes = [], Control...$controls) global() argument
290 dirSync(string $rootNc = null, FilterInterface $filter = null, ...$attributes) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSearchRequest.php48 * attributes AttributeSelection }
126 protected $attributes = [];
130 * @param string|Attribute ...$attributes argument
132 public function __construct(FilterInterface $filter, ...$attributes)
135 $this->setAttributes(...$attributes);
141 * @param string|Attribute ...$attributes
144 public function select(...$attributes)
146 return $this->setAttributes(...$attributes);
223 return $this->attributes;
227 * @param string|Attribute ...$attributes
124 protected $attributes = []; global() variable in FreeDSx\\Ldap\\Operation\\Request\\SearchRequest
142 select(...$attributes) global() argument
228 setAttributes(...$attributes) global() argument
[all...]
H A DAddRequest.php31 * attributes AttributeList }
102 $attributes = [];
125 $attributes[] = new Attribute($attrType->getValue(), ...$attrValues);
128 return new self(new Entry($dn, ...$attributes));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php28 * attributes PartialAttributeList }
66 $attributes = [];
85 $attributes[] = new Attribute($partialAttribute->getChild(0)->getValue(), ...$values);
91 ...$attributes
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DDirSync.php84 * @param mixed ...$attributes
86 public function __construct(LdapClient $client, ?string $namingContext = null, ?FilterInterface $filter = null, ...$attributes)
91 $this->search = (new SearchRequest($filter ?? Filters::present('objectClass'), ...$attributes));
166 * The attributes to return from the DirSync search.
168 * @param mixed ...$attributes argument
171 public function selectAttributes(...$attributes)
173 $this->search->select(...$attributes);
232 * Whether or not to only retrieve objects and attributes that are accessible to the client.
83 __construct(LdapClient $client, string $namingContext = null, FilterInterface $filter = null, ...$attributes) global() argument
/plugin/pureldap/classes/
H A DADClient.php57 $attributes = $this->userAttributes();
58 $entries = $this->ldap->search(Operations::search($filter, ...$attributes));
193 $attributes = $this->userAttributes();
194 $search = Operations::search($filter, ...$attributes);
308 // get additional attributes
309 foreach ($this->config['attributes'] as $attr) {
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md42 - `HtmlElement::setAttribute()` no longer requires the second parameter for boolean attributes
67 - Fixed `TaskListItemMarkerRenderer` not including HTML attributes set on the node by other extensions (#947)
280 - Fixed unnecessary AST iteration when no default attributes are configured
289 - `DefaultAttributesExtension` ([see documentation](https://commonmark.thephpleague.com/extensions/default-attributes/))
367 - **Heading Permalinks now link to element IDs instead of using `name` attributes** (#602)
409 - `HtmlElement` automatically flattens any attributes with array values into space-separated strings, removing duplicate entries
430 - `AttributesInline::$attributes` is now `private`
/plugin/commonmark/vendor/league/commonmark/src/
H A DHtmlElement.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Event/
H A DAttributesListener.php48 $attributes = AttributesHelper::mergeAttributes($target, $node->getAttributes());
50 $attributes = AttributesHelper::mergeAttributes($node->getAttributes(), $target);
53 $target->data->set('attributes', $attributes);
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Node/
H A DAttributes.php26 private array $attributes;
31 * @param array<string, mixed> $attributes
33 public function __construct(array $attributes)
37 $this->attributes = $attributes;
45 return $this->attributes;
49 * @param array<string, mixed> $attributes
51 public function setAttributes(array $attributes): void
53 $this->attributes = $attributes;
23 private $attributes; global() variable in League\\CommonMark\\Extension\\Attributes\\Node\\Attributes
28 __construct(array $attributes) global() argument
[all...]
H A DAttributesInline.php22 private array $attributes; variable in League\\CommonMark\\Extension\\Attributes\\Node\\AttributesInline
27 * @param array<string, mixed> $attributes
29 public function __construct(array $attributes, bool $block)
33 $this->attributes = $attributes;
42 return $this->attributes;
46 * @param array<string, mixed> $attributes
48 public function setAttributes(array $attributes): void
50 $this->attributes = $attributes;
31 __construct(array $attributes, bool $block) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Parser/
H A DAttributesBlockParser.php

1...<<11121314151617181920>>...26