Home
last modified time | relevance | path

Searched refs:attribute (Results 51 – 75 of 449) sorted by relevance

12345678910>>...18

/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DRestorer.php91 foreach ($class->getProperties() as $attribute) {
92 if (!$attribute->isStatic()) {
96 $name = $attribute->getName();
106 $attribute->setAccessible(true);
107 $attribute->setValue($defaults[$name]);
/plugin/combo/action/
H A Dmetaprocessing.php97 foreach ($attributes as $attribute) {
100 $beforeMeta = MetadataSystem::getForName($attribute)
104 $afterMeta = MetadataSystem::getForName($attribute)
109 LogUtility::internalError("The metadata was not found for the attribute ($attribute)");
122 MetadataMutation::notifyMetadataMutation($attribute, $valueBefore, $valueAfter, $page);
/plugin/combo/syntax/
H A Dlabel.php32 * An indicator attribute that tells if the accordion is collpased or not
182 $attribute = $data[PluginUtility::ATTRIBUTES];
183 $headingId = $attribute[self::HEADING_ID];
184 $collapseId = $attribute[self::TARGET_ID];
185 $collapsed = $attribute[self::COLLAPSED];
222 $attribute = $data[PluginUtility::ATTRIBUTES];
223 $collapseId = $attribute[self::TARGET_ID];
224 $headingId = $attribute[self::HEADING_ID];
225 $collapsed = $attribute[self::COLLAPSED];
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst12 <xml-discriminator attribute="true" cdata="false" namespace=""/>
27 xml-attribute="true"
36 xml-attribute-map="true"
43 …<xml-map inline="true" key-attribute-name="foo" entry-name="bar" namespace="http://www.w3.org/2005…
63 xml-attribute="true"
71 xml-attribute-map="true"
82 xml-attribute="true"
90 xml-attribute-map="true"
101 …<xml-map inline="true" key-attribute-name="foo" entry-name="bar" namespace="http://www.w3.org/2005…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D24.24.js.map1attribute.value'],\n [/'([^']*)'/, 'attribute.value'],\n [/[\\w\\-]+/, 'attr…
H A D29.29.js.map1attribute.name', '@attribute'],\n ['url(\\\\-prefix)?\\\\(', { token: 'tag', next: '@ur…
H A D68.68.js.map1attribute.name', '', 'attribute.value']\n ],\n [\n /(@qualifi…
H A D65.65.js.map1attribute.value.html'],\n [/'([^']*)'/, 'attribute.value.html'],\n [/[\\w\\-…
H A D22.22.js.map1attribute.value'],\n [/'([^']*)'/, 'attribute.value'],\n [/[\\w\\-]+/, 'attr…
/plugin/attribute/
H A Dplugin.info.txt1 base attribute
6 desc Arbitrary attribute definition and storage for user associated data.
7 url https://www.dokuwiki.org/plugin:attribute
/plugin/pgn4web/pgn4web/
H A Dmini.css56 /* a "width" attribute here must use the !important flag to override default settings */
65 /* a "width" attribute here must use the !important flag to override default settings */
69 /* a "width" attribute here must use the !important flag to override default settings */
73 /* a "width" attribute here must use the !important flag to override default settings */
77 /* a "width" attribute here must use the !important flag to override default settings */
H A Dtactics.css62 /* a "width" attribute here must use the !important flag to override default settings */
71 /* a "width" attribute here must use the !important flag to override default settings */
75 /* a "width" attribute here must use the !important flag to override default settings */
79 /* a "width" attribute here must use the !important flag to override default settings */
83 /* a "width" attribute here must use the !important flag to override default settings */
H A Dtilb98r2.css75 /* a "width" attribute here must use the !important flag to override default settings */
84 /* a "width" attribute here must use the !important flag to override default settings */
88 /* a "width" attribute here must use the !important flag to override default settings */
92 /* a "width" attribute here must use the !important flag to override default settings */
96 /* a "width" attribute here must use the !important flag to override default settings */
H A Dchess960wch06.css70 /* a "width" attribute here must use the !important flag to override default settings */
79 /* a "width" attribute here must use the !important flag to override default settings */
83 /* a "width" attribute here must use the !important flag to override default settings */
87 /* a "width" attribute here must use the !important flag to override default settings */
91 /* a "width" attribute here must use the !important flag to override default settings */
H A Dinputform.css84 /* a "width" attribute here must use the !important flag to override default settings */
99 /* a "width" attribute here must use the !important flag to override default settings */
107 /* a "width" attribute here must use the !important flag to override default settings */
112 /* a "width" attribute here must use the !important flag to override default settings */
116 /* a "width" attribute here must use the !important flag to override default settings */
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DXpath.php415 Ast\Selector\Simple\Attribute $attribute
417 switch ($attribute->match) {
421 $attribute->name,
422 $this->quoteLiteral($attribute->literal->value)
428 $attribute->name,
429 strlen($attribute->literal->value),
430 $this->quoteLiteral($attribute->literal->value)
436 $attribute->name,
437 $this->quoteLiteral($attribute->literal->value)
441 $condition = '@'.$attribute
414 visitSelectorSimpleAttribute(Ast\\Selector\\Simple\\Attribute $attribute) global() argument
[all...]
/plugin/gtime/gtlib/asn1/cms/
H A DCMSSignerInfo.php118 $attribute = new CMSAttribute();
119 $attribute->decode($a);
121 array_push($this->signedAttrs, $attribute);
134 $attribute = new CMSAttribute();
135 $attribute->decode($a);
137 array_push($this->unsignedAttrs, $attribute);
/plugin/findologicxmlexport/
H A DDokuwikiXMLExport.php225 …$attribute = str_replace(self::CATEGORY_DELIMITER, ' ', $pageId); // Replace underscores with spac…
226 …$attribute = str_replace(':', self::CATEGORY_DELIMITER, $attribute); // Replace colons with unders…
227 $attribute = ucwords($attribute, self::CATEGORY_DELIMITER); // Capitalize each category
228 return (array($attribute));
/plugin/rrdgraph/inc/
H A Dsvgbinding.php22 public $attribute; variable in AttrBinding
32 * @param String $attribute Name of the attribute to bind to the given value.
35 public function __construct($attribute, $value) { argument
36 $this->attribute = $attribute;
97 if ($binding != null) $attributes[$binding->attribute] = $binding->value;
/plugin/combo/ComboStrap/
H A DMetadataMutation.php27 * @param string $attribute
37 public static function notifyMetadataMutation(string $attribute, $valueBefore, $valueAfter, Path $wikiPath) argument
44 self::NAME_ATTRIBUTE => $attribute,
/plugin/s5reloaded/ui/effects_support/
H A Dbuilder.js90 for(attribute in attributes)
91 attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) +
92 '="' + attributes[attribute].toString().escapeHTML().gsub(/"/,'&quot;') + '"');
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php527 foreach ($annotation->value as $attribute) {
543 $attribute = new Attribute();
546 $attribute->name = $property->name;
551 $this->collectAttributeTypeMetadata($metadata, $attribute);
584 * @param Attribute $attribute
591 $type = isset(self::$typeMap[$attribute->type])
592 ? self::$typeMap[$attribute->type]
593 : $attribute->type;
627 $metadata['attribute_types'][$attribute->name]['type'] = $type;
628 $metadata['attribute_types'][$attribute->name]['value'] = $attribute->type;
[all …]
/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/Search/Filter/
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/findologicxmlexport/vendor/sebastian/object-enumerator/src/
H A DEnumerator.php69 foreach ($reflector->getProperties() as $attribute) {
70 $attribute->setAccessible(true);
73 $value = $attribute->getValue($variable);

12345678910>>...18