Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 644) sorted by relevance

12345678910>>...26

/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php68 $exclude = $elem->attributes()->exclude;
95 if (!isset($entry->attributes()->value)) {
113 if (!isset($xmlNamespace->attributes()->uri)) {
117 if (isset($xmlNamespace->attributes()->prefix)) {
130 if (isset($xmlDiscriminator->attributes()->cdata)) {
139 if (isset($method->attributes()->expression)) {
142 (string) $method->attributes()->name,
146 if (!isset($method->attributes()->method)) {
341 if (!isset($method->attributes()->type)) {
344 if (!isset($method->attributes()->name)) {
[all …]
/plugin/combo/ComboStrap/
H A DPosition.php33 * @param TagAttributes $attributes
35 public static function processStickiness(&$attributes) argument
37 if ($attributes->hasComponentAttribute(self::STICKY_ATTRIBUTE)) {
38 $sticky = strtolower($attributes->getValueAndRemove(self::STICKY_ATTRIBUTE));
41 $attributes->addClassName($stickyClass);
66 * @param TagAttributes $attributes
68 public static function processPosition(TagAttributes &$attributes) argument
70 if ($attributes->hasComponentAttribute(self::POSITION_ATTRIBUTE)) {
71 $position = strtolower($attributes->getValueAndRemove(self::POSITION_ATTRIBUTE));
82 $attributes
[all...]
H A DPrism.php181 * @param TagAttributes $attributes
184 public static function htmlEnter(\Doku_Renderer_xhtml $renderer, \DokuWiki_Syntax_Plugin $plugin, $attributes = null) argument
187 if ($attributes == null) {
188 $attributes = TagAttributes::createEmpty();
194 $display = $attributes->getValueAndRemove("display");
212 if ($attributes->getLogicalTag() != null) {
213 $logicalTag = $attributes->getLogicalTag();
216 $attributes->setLogicalTag($logicalTag . "-container");
220 * The container is the passed `attributes`
225 $codeAttributes->setType($attributes
355 htmlExit(\\Doku_Renderer_xhtml $renderer, $attributes = null) global() argument
[all...]
H A DDimension.php62 * @param TagAttributes $attributes
64 public static function processWidthAndHeight(TagAttributes &$attributes) argument
66 self::processWidth($attributes);
69 if ($attributes->hasComponentAttribute($heightName)) {
70 $heightValue = trim($attributes->getValueAndRemove($heightName));
74 if (in_array($attributes->getLogicalTag(), self::NATURAL_SIZING_ELEMENT)) {
82 $attributes->addStyleDeclarationIfNotSet("max-height", $heightValue);
97 $attributes->addStyleDeclarationIfNotSet("height", $heightValue);
99 $scrollMechanism = $attributes->getValueAndRemoveIfPresent(Dimension::SCROLL);
106 $attributes
239 processWidth(TagAttributes $attributes) global() argument
[all...]
H A DSkin.php79 * @param TagAttributes $attributes
81 public static function processSkinAttribute(TagAttributes &$attributes) argument
84 if (!$attributes->hasComponentAttribute(self::SKIN_ATTRIBUTE)) {
87 $skinValue = $attributes->getValueAndRemove(self::SKIN_ATTRIBUTE);
88 if (!$attributes->hasComponentAttribute(TagAttributes::TYPE_KEY)) {
93 $type = $attributes->getValue(TagAttributes::TYPE_KEY);
96 && ($attributes->hasClass("btn-$type")||$attributes->hasClass("alert-$type"))
117 $attributes->addStyleDeclarationIfNotSet(ColorRgb::COLOR, $color[ColorRgb::COLOR]);
118 $attributes
[all...]
H A DRasterImageLink.php77 $attributes = $this->mediaMarkup->getExtraMediaTagAttributes()
89 $attributes->addClassName(self::RESPONSIVE_CLASS);
120 $attributes->addOutputAttributeValue("height", $targetHeight . $htmlLengthUnit);
124 $attributes->addStyleDeclarationIfNotSet("max-height", $targetHeight . $cssLengthUnit);
128 $attributes->addStyleDeclarationIfNotSet("height", "auto");
164 $attributes->addOutputAttributeValue("width", $targetWidth . $htmlLengthUnit);
168 $attributes->addStyleDeclarationIfNotSet("max-width", $targetWidth . $cssLengthUnit);
172 $attributes->addStyleDeclarationIfNotSet("width", "100%");
269 $attributes->addOutputAttributeValue("src", $srcValue);
272 $attributes
[all...]
H A DFloatAttribute.php21 * @param TagAttributes $attributes
23 public static function processFloat(&$attributes) argument
27 if ($attributes->hasComponentAttribute($float)) {
28 $floatValue = $attributes->getValueAndRemove($float);
67 if (!$attributes->hasComponentAttribute("spacing")){
68 $attributes->addComponentAttributeValue("spacing","ms-3");
73 $attributes->addClassName("float-{$floatValue}");
79 $attributes->addClassName("float-xs-none");
83 $attributes->addStyleDeclarationIfNotSet("position", "relative!important");
84 $attributes
[all...]
/plugin/barcodes/
H A Dsyntax.php59 $attributes = new stdClass();
60 $attributes->type = strtoupper($barcode->attributes()['type']);
61 $attributes->value = strval($barcode->attributes()['value']);
62 …$attributes->img_type = $barcode->attributes()['img-type'] ? strval($barcode->attributes()['img-ty…
63 …$attributes->color = $barcode->attributes()['color'] ? Color::str2hex($barcode->attributes()['colo…
64 …$attributes->background_color = $barcode->attributes()['background-color'] ? Color::str2hex($barco…
65 …$attributes->size = preg_match('/^([0-9]+)(px)?$/', $barcode->attributes()['size'], $matches) ? in…
66 …$attributes->scale = $barcode->attributes()['scale'] ? floatval($barcode->attributes()['scale']) :…
67 …$attributes->padding = preg_match('/^([0-9]+)(px)?$/', $barcode->attributes()['padding'], $matches…
68 $data->attributes = $attributes;
[all …]
/plugin/projects/lib/
H A Dfile_definition.php14 private $attributes = array(); variable in FileDefinition
22 $this->attributes = $attributes;
25 public function attributes() { return $this->attributes; } function in FileDefinition
29 return $this->attributes[$name];
43 $attributes = array();
46 $attributes['name'] = $name;
48 $type = $attributes['type'];
83 $attributes['linkto'] = "";
85 $linkto = $attributes['linkto'];
93 $attributes['linkto'] = $linkto;
[all …]
/plugin/combo/ComboStrap/TagAttribute/
H A DAlign.php36 * @param TagAttributes $attributes
38 public static function processAlignAttributes(TagAttributes &$attributes) argument
42 $alignAttributeValues = $attributes->getValueAndRemove($align);
62 $attributes->addClassName(self::CENTER_CLASS);
74 $attributes->addClassName("align-self{$breakpoint}-center");
80 $attributes->addStyleDeclarationIfNotSet("margin-left", "auto");
82 $attributes->addClassName("ms-auto");
84 $attributes->addStyleDeclarationIfNotSet(Dimension::WIDTH_KEY, "fit-content");
94 $attributes->addClassName("justify-content{$breakpoint}-left");
97 $attributes
[all...]
H A DTextAlign.php23 * @param TagAttributes $attributes
26 public static function processTextAlign(&$attributes) argument
29 if ($attributes->hasComponentAttribute(self::ATTRIBUTE_NAME)) {
34 $textAlignValues = $attributes->getValuesAndRemove(self::ATTRIBUTE_NAME);
58 $attributes->addStyleDeclarationIfNotSet(self::ATTRIBUTE_NAME, "left");
62 $attributes->addStyleDeclarationIfNotSet(self::ATTRIBUTE_NAME, "right");
66 $attributes->addStyleDeclarationIfNotSet(self::ATTRIBUTE_NAME, $value);
106 $attributes->addClassName("text-$valueClass");
108 $attributes->addClassName("text-$breakpoint-$valueClass");
115 $attributes
[all...]
H A DToggle.php31 * @param TagAttributes $attributes
35 static function processToggle(TagAttributes $attributes) argument
42 $value = $attributes->getValueAndRemove(self::TOGGLE_STATE);
54 $attributes->addClassName("collapse show");
57 $attributes->addClassName("collapse");
75 $id = $attributes->getValue("id");
105 if ($attributes->hasComponentAttribute($collapse)) {
106 $targetId = $attributes->getValueAndRemoveIfPresent($collapse);
108 $targetId = $attributes->getValueAndRemoveIfPresent("collapse");
121 $attributes
[all...]
/plugin/barcodes/lib/
H A DBarcodesWrapper.php33 private $attributes; variable in DokuWiki\\Barcodes\\BarcodesWrapper
41 public function __construct($attributes) argument
43 $this->attributes = $attributes;
52 if (!$this->attributes->type) {
55 elseif ($this->attributes->type == "QRCODE") {
59 elseif ($this->attributes->type == "DATAMATRIX") {
72 $this->factory->setCode($this->attributes->value);
78 if ($this->attributes->size) {
95 …if ($this->attributes->background_color) $styles[] = sprintf('background-color: #%s', $this->attri…
98 if ($this->attributes->size) {
[all …]
/plugin/diagrams/script/
H A DDiagramsForm.js6 #attributes = { field in DiagramsForm
23 constructor(attributes, onsubmit, onclose = null) { argument
25 const fields = DiagramsForm.#getFields(attributes);
28 this.#attributes = {
29 ...this.#attributes,
30 ...attributes
38 this.#onsubmitCB(this.#attributes);
50 this.#getButtonsMediaManager(this.#attributes);
51 this.#getButtonsEditor(this.#attributes);
56 #getButtonsEditor(attributes) { argument
79 getButtonsMediaManager(attributes) global() argument
102 getFields(attributes) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Extension/Attributes/Util/
H A DAttributesHelper.php37 // Quick check to see if we might have attributes
46 // matching individual attributes since they won't need to look ahead for the closing '}'
47 // while dealing with the fact that attributes can technically contain curly braces.
60 /** @var array<string, mixed> $attributes */
61 $attributes = [];
64 $attributes['id'] = \substr($attribute, 1);
70 $attributes['class'][] = \substr($attribute, 1);
86 $attributes['class'][] = $class;
89 $attributes[\trim($name)] = \trim($value);
93 if (isset($attributes['clas
[all...]
/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/ckgdoku/ckeditor/plugins/pastefromword/filter/
H A Ddefault.js7attributes.name){delete e.name;return}if(e.attributes.name.match(/^OLE_LINK\d+$/)){delete e.name;r…
8attributes["cke-ignored"]=!0)}k.mapStyles(e,{width:function(a){k.setStyle(e,"width",a+"px")},heigh…
15attributes.style),p;for(p in c)m=c[p],delete c[p],c[p.toLowerCase()]=m;for(p=0;p<f.length;p++)c[f[…
16attributes.src&&(c=a.attributes.src)},CKEDITOR.NODE_ELEMENT,!0);a.filterChildren(q);a.name="img";a…
17attributes&&c.attributes.style&&c.attributes.style.match(/mso-list:\s*ignore/i)?a.replace(/&nbsp;/…
27attributes.style&&b.attributes.style.match(/mso\-list:\s?l\d/)&&"li"!==b.parent.name||b.attributes
31attributes["cke-list-style-type"]){case "lower-roman":case "upper-roman":a.attributes.start=g.toAr…
37attributes["cke-symbol"].match(/[a-z0-9]+/gi),d;c&&(c=c[c.length-1],d=a.parent.attributes["cke-lis…
40attributes["cke-symbol"]=e;c.attributes["cke-list-level"]=m})});l=e.reduce(l,function(a,b){var c=b…
44attributes["cke-list-level"]===a.attributes["cke-list-level"])return b.attributes["cke-list-id"]==…
[all …]
/plugin/svgpureinsert/
H A Dhelper.php59 $attributes = array();
61 $attributes[$name] = $attr->value;
63 return $attributes;
110 $attributes = $this->parseAttributes($m[1]);
112 $width = $attributes['width'];
113 $height = $attributes['height'];
130 if(isset($attributes['viewbox'])) unset($attributes['viewbox']);
131 if(isset($attributes['preserveaspectratio'])) unset($attributes['preserveaspectratio']);
133 $attributes['width'] = '100%';
134 $attributes['height'] = '100%';
[all …]
/plugin/ckgedit/ckeditor/plugins/pastefromword/filter/
H A Ddefault.js7attributes.name){if("_GoBack"==a.attributes.name){delete a.name;return}if(a.attributes.name.match(…
8attributes.href.match(/#(.+)$/)[1];x[b]=a}a.attributes.name&&x[a.attributes.name]&&(a=x[a.attribut…
9attributes.src.match(/^file:\/\//)&&a.attributes.alt&&a.attributes.alt.match(/^https?:\/\//)&&(a.a…
15attributes.align&&1===m.objectKeys(b.attributes).length&&1===b.children.length){a.attributes.align…
17attributes["v:shapes"]==a.attributes.id&&(b=!0)},!0);if(b)return!1;var d="";"v:group"===a.parent.n…
19attributes.style);d&&e[b]||(""===c?delete e[b]:e[b]=c,a.attributes.style=CKEDITOR.tools.writeCssTe…
29attributes.style&&b.attributes.style.match(/mso\-list:\s?l\d/)&&"li"!==b.parent.name||b.attributes
32attributes["cke-list-style-type"]=d["list-style-type"]}else e={"·":"disc",o:"circle","§":"square"}…
39attributes["cke-list-style-type"]||this.numbering.getStyle(c),c=this.numbering.toNumber(c,d),c!==b…
45attributes["cke-symbol"]);for(e=parseInt(a[h].attributes["cke-list-level"],10)+1;20>e;e++)c[e]&&de…
[all …]
/plugin/batchedit/
H A Djs.cookie.js31 var attributes = arguments[ i ];
32 for (var key in attributes) {
33 result[key] = attributes[key];
40 function api (key, value, attributes) { argument
49 attributes = extend({
51 }, api.defaults, attributes);
53 if (typeof attributes.expires === 'number') {
55 expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
56 attributes.expires = expires;
60 attributes
153 remove(key, attributes) global() argument
[all...]
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DXmlSchemaDateHandler.php71 $attributes = $data->attributes('xsi', true);
72 if (isset($attributes['nil'][0]) && (string) $attributes['nil'][0] === 'true') {
88 $attributes = $data->attributes('xsi', true);
89 if (isset($attributes['nil'][0]) && (string)$attributes['nil'][0] === 'true') {
109 $attributes = $data->attributes('xsi', true);
110 if (isset($attributes['nil'][0]) && (string)$attributes['nil'][0] === 'true') {
129 $attributes = $data->attributes('xsi', true);
130 if (isset($attributes['nil'][0]) && (string)$attributes['nil'][0] === 'true') {
/plugin/bootswrapper/syntax/
H A Dpanel.php68 list($state, $match, $pos, $attributes) = $data;
73 $type = $attributes['type'];
74 $title = (isset($attributes['title']) ? $attributes['title'] : false);
75 $footer = (isset($attributes['footer']) ? $attributes['footer'] : false);
76 $subtitle = (isset($attributes['subtitle']) ? $attributes['subtitle'] : false);
77 $icon = (isset($attributes['icon']) ? $attributes['icon'] : false);
78 $nobody = (isset($attributes['no-body']) ? $attributes['no-body'] : false);
H A Dprogressbar.php65 list($state, $match, $pos, $attributes) = $data;
69 …$striped = (isset($attributes['striped']) ? $attributes['striped'] : $this->tag_attributes['stri…
70 …$animate = (isset($attributes['animate']) ? $attributes['animate'] : $this->tag_attributes['anim…
71 …$showvalue = (isset($attributes['showvalue']) ? $attributes['showvalue'] : $this->tag_attributes['…
72 …$value = (isset($attributes['value']) ? $attributes['value'] : $this->tag_attributes['value'][…
73 …$type = (isset($attributes['type']) ? $attributes['type'] : $this->tag_attributes['type']['de…
/plugin/authplaincas/
H A Dplaincas.settings.php21 function plaincas_pattern_attributes( $attributes ){ argument
22 if (is_array($attributes['roles'])) {
23 return $attributes['roles'];
26 return array($attributes['roles']);
35 function plaincas_user_attributes( $attributes ){ argument
37 'name' => $attributes['first'] . ' ' . $attributes['last'],
38 'mail' => $attributes['mail'],
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushXml.js32 if (match.attributes != null)
34 var attributes,
41 while ((attributes = XRegExp.exec(code, regex, pos)) != null)
43 result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
44 …result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].index…
45 pos = attributes.index + attributes[0].length;

12345678910>>...26