| /plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/ |
| D | XmlDriver.php | 67 $exclusionPolicy = strtoupper((string) $elem->attributes()->{'exclusion-policy'}) ?: 'NONE'; 68 $exclude = $elem->attributes()->exclude; 70 …$classAccessType = (string) ($elem->attributes()->{'access-type'} ?: PropertyMetadata::ACCESS_TYPE… 75 if (null !== $accessorOrder = $elem->attributes()->{'accessor-order'}) { 76 …Order((string) $accessorOrder, preg_split('/\s*,\s*/', (string) $elem->attributes()->{'custom-acce… 79 if (null !== $xmlRootName = $elem->attributes()->{'xml-root-name'}) { 83 if (null !== $xmlRootNamespace = $elem->attributes()->{'xml-root-namespace'}) { 86 if (null !== $xmlRootPrefix = $elem->attributes()->{'xml-root-prefix'}) { 90 $readOnlyClass = 'true' === strtolower((string) $elem->attributes()->{'read-only'}); 92 $discriminatorFieldName = (string) $elem->attributes()->{'discriminator-field-name'}; [all …]
|
| /plugin/barcodes/ |
| D | syntax.php | 59 $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 …$attributes->logo = $barcode->attributes()['logo'] ? strval($barcode->attributes()['logo']) : null; [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | Position.php | 33 * @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->addClassName("position-absolute top-0 start-0 translate-middle"); [all …]
|
| H A D | Prism.php | 192 * @param TagAttributes $attributes 195 …tion htmlEnter(\Doku_Renderer_xhtml $renderer, \DokuWiki_Syntax_Plugin $plugin, $attributes = null) argument 198 if ($attributes == null) { 199 $attributes = TagAttributes::createEmpty(); 205 $display = $attributes->getValueAndRemove("display"); 223 if ($attributes->getLogicalTag() != null) { 224 $logicalTag = $attributes->getLogicalTag(); 227 $attributes->setLogicalTag($logicalTag . "-container"); 236 $codeAttributes->setType($attributes->getType()); 237 $language = $attributes->getValue(TagAttributes::TYPE_KEY); [all …]
|
| H A D | Dimension.php | 62 * @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->addStyleDeclarationIfNotSet("overflow-y", "hidden"); [all …]
|
| H A D | Skin.php | 79 * @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->addStyleDeclarationIfNotSet(BackgroundAttribute::BACKGROUND_COLOR, $color[BackgroundA… 119 … $attributes->addStyleDeclarationIfNotSet(ColorRgb::BORDER_COLOR, $color[ColorRgb::BORDER_COLOR]); [all …]
|
| H A D | RasterImageLink.php | 77 $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->addOutputAttributeValue("srcset", $srcSet); [all …]
|
| H A D | FloatAttribute.php | 21 * @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->addStyleDeclarationIfNotSet("z-index", 1);
|
| /plugin/projects/lib/ |
| D | file_definition.php | 14 private $attributes = array(); variable in FileDefinition 21 public function __construct($attributes) { argument 22 $this->attributes = $attributes; 25 public function attributes() { return $this->attributes; } function in FileDefinition 28 if (!isset($this->attributes[$name])) return NULL; 29 return $this->attributes[$name]; 43 $attributes = array(); 44 foreach ($xml->firstChild->attributes as $attribute) 45 $attributes[$attribute->name] = $attribute->value; 46 $attributes['name'] = $name; [all …]
|
| /plugin/combo/ComboStrap/TagAttribute/ |
| H A D | Align.php | 36 * @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->addClassName("justify-content{$breakpoint}-start"); [all …]
|
| H A D | Toggle.php | 31 * @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->addOutputAttributeValue("data-{$bootstrapNamespace}toggle", "collapse"); [all …]
|
| H A D | TextAlign.php | 23 * @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->addClassName("text-$valueClass"); [all …]
|
| /plugin/barcodes/lib/ |
| D | BarcodesWrapper.php | 33 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") { 63 elseif (in_array($this->attributes->type, self::JUCKESARM_BARCODES)) { 65 $this->factory->setType($this->attributes->type); 68 throw new BarcodesException('unsupported type "' . $this->attributes->type . '"'); 72 $this->factory->setCode($this->attributes->value); [all …]
|
| /plugin/diagrams/script/ |
| H A D | DiagramsForm.js | 6 #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) { [all …]
|
| /plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/ |
| H A D | Entry.php | 31 protected $attributes; variable in FreeDSx\\Ldap\\Entry\\Entry 47 public function __construct($dn, Attribute ...$attributes) argument 50 $this->attributes = $attributes; 68 $this->attributes[] = $attribute; 102 public function reset(...$attributes) argument 104 foreach ($attributes as $attribute) { 106 foreach ($this->attributes as $i => $attr) { 108 unset($this->attributes[$i]); 130 foreach ($this->attributes as $i => $attr) { 133 $this->attributes[$i] = $attribute; [all …]
|
| /plugin/ckgdoku/ckeditor/plugins/pastefromword/filter/ |
| D | default.js | 5 …dren[c].remove();c=a.attributes;var f=a,e=!0,h;for(h in c)if(e)e=!1;else{var l=new CKEDITOR.htmlPa… 6 …petype/,""],[new RegExp(y.join("|")),""]],elements:{a:function(e){if(e.attributes.name){if("_GoBac… 7 …attributes.name){delete e.name;return}if(e.attributes.name.match(/^OLE_LINK\d+$/)){delete e.name;r… 8 …attributes["cke-ignored"]=!0)}k.mapStyles(e,{width:function(a){k.setStyle(e,"width",a+"px")},heigh… 9 …,d=n.parseCssText(a.attributes.style);c&&!c.attributes["cke-list-level"]&&d["mso-list"]&&d["mso-li… 11 …es&&a.attributes.size&&delete a.attributes.size;CKEDITOR.dtd.tr[a.parent.name]&&CKEDITOR.tools.arr… 12 …attributes.style=k.normalizedStyles(a,b),k.pushStylesLower(a))},ol:function(a){if(c)return"li"==a.… 13 …attributes.style.match(/FONT-FAMILY:\s*Symbol/i)&&a.forEach(function(a){a.value=a.value.replace(/&… 14 …attributes).length&&1===b.children.length){a.attributes.align=b.attributes.align;d=b.children.spli… 15 …attributes.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[… [all …]
|
| /plugin/ckgedit/ckeditor/plugins/pastefromword/filter/ |
| D | default.js | 5 …dren[c].remove();c=a.attributes;var e=a,h=!0,f;for(f in c)if(h)h=!1;else{var l=new CKEDITOR.htmlPa… 6 …leanWord=function(a,b){function c(a){(a.attributes["o:gfxdata"]||"v:group"===a.parent.name)&&e.pus… 7 …attributes.name){if("_GoBack"==a.attributes.name){delete a.name;return}if(a.attributes.name.match(… 8 …attributes.href.match(/#(.+)$/)[1];x[b]=a}a.attributes.name&&x[a.attributes.name]&&(a=x[a.attribut… 9 …attributes.src.match(/^file:\/\//)&&a.attributes.alt&&a.attributes.alt.match(/^https?:\/\//)&&(a.a… 10 …,d=m.parseCssText(a.attributes.style);c&&!c.attributes["cke-list-level"]&&d["mso-list"]&&d["mso-li… 12 …es&&a.attributes.size&&delete a.attributes.size;CKEDITOR.dtd.tr[a.parent.name]&&CKEDITOR.tools.arr… 13 …attributes.style=k.normalizedStyles(a,b),k.pushStylesLower(a))},ol:function(a){if(d)return"li"==a.… 14 …attributes.style.match(/^mso\-bookmark:OLE_LINK\d+$/)||a.getHtml().match(/^(\s| )+$/)){for(va… 15 …attributes.align&&1===m.objectKeys(b.attributes).length&&1===b.children.length){a.attributes.align… [all …]
|
| /plugin/svgpureinsert/ |
| D | helper.php | 59 $attributes = array(); 60 foreach($dom->documentElement->attributes as $name => $attr) { 61 $attributes[$name] = $attr->value; 63 return $attributes; 110 $attributes = $this->parseAttributes($m[1]); 112 $width = $attributes['width']; 113 $height = $attributes['height']; 117 list(, , $width, $height) = explode(' ', $attributes['viewbox']); 130 if(isset($attributes['viewbox'])) unset($attributes['viewbox']); 131 if(isset($attributes['preserveaspectratio'])) unset($attributes['preserveaspectratio']); [all …]
|
| /plugin/grensladawritezor/fckeditor/ |
| D | fckeditor.cfm | 40 <cfparam name="attributes.instanceName" type="string"> 41 <cfparam name="attributes.width" type="string" default="100%"> 42 <cfparam name="attributes.height" type="string" default="200"> 43 <cfparam name="attributes.toolbarSet" type="string" default="Default"> 44 <cfparam name="attributes.value" type="string" default=""> 45 <cfparam name="attributes.basePath" type="string" default="/fckeditor/"> 46 <cfparam name="attributes.checkBrowser" type="boolean" default="true"> 47 <cfparam name="attributes.config" type="struct" default="#structNew()#"> 54 if( attributes.checkBrowser ) 101 if( len( attributes.basePath) and right( attributes.basePath, 1 ) is not "/" ) [all …]
|
| /plugin/batchedit/ |
| D | js.cookie.js | 31 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.expires = attributes.expires ? attributes.expires.toUTCString() : ''; [all …]
|
| /plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/ |
| D | XmlSchemaDateHandler.php | 71 $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/ |
| D | panel.php | 68 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);
|
| D | progressbar.php | 65 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…
|
| D | text.php | 63 list($state, $match, $pos, $attributes, $is_block) = $data; 69 $color = (isset($attributes['type']) ? $attributes['type'] : null); 70 $size = (isset($attributes['size']) ? $attributes['size'] : null); 71 $background = (isset($attributes['background']) ? $attributes['background'] : null); 72 $align = (isset($attributes['align']) ? $attributes['align'] : null); 73 $transform = (isset($attributes['transform']) ? $attributes['transform'] : null);
|
| /plugin/authplaincas/ |
| D | plaincas.settings.php | 21 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'],
|