Home
last modified time | relevance | path

Searched refs:attributes (Results 26 – 50 of 644) sorted by last modified time

12345678910>>...26

/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs22062 // TODO: handle all the attributes
/plugin/xlsx2dw/packages/xmltojson/
H A Dxmltojson.js140 function Mj(a){Jj();return a.attributes}
/plugin/gallery/action/
H A Dprosemirror.php119 * Render the nodes attributes to html so it can be displayed in the editor
145 * Get default node attributes from gallery Options object
172 * Convert gallery options to node attributes
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php570 list($tag, $id, $class, $attributes, $cmb) = $selector;
670 && $attributes !== ''
671 && is_array($attributes)
672 && !empty($attributes)) {
673 foreach ($attributes as $a) {
938 $attributes,
945 foreach ($attributes as $att) {
1163 $attributes = array();
1173 $attributes[$match[1]] = $match[2];
1177 if (isset($attributes['width']) && $width == -1) {
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md345 width and height cannot be assigned by CSS - must be attributes
538 - Image HTML attributes `<img>` added: max-height, max-width, min-height and min-width
632 - `<meter>` and `<progress>` support attributes as for HTML5
/plugin/combo/ComboStrap/
H A DLazyLoad.php115 * @param TagAttributes $attributes
117 public static function addPlaceholderBackground(&$attributes) argument
121 if ($attributes->hasComponentAttribute(BackgroundAttribute::BACKGROUND_COLOR)) {
122 $placeholderColor = $attributes->getValueAndRemove(BackgroundAttribute::BACKGROUND_COLOR);
124 $attributes->addOutputAttributeValue("data-placeholder-background", "$placeholderColor");
H A DLineSpacing.php18 * @param TagAttributes $attributes
20 public static function processLineSpacingAttributes(&$attributes) argument
25 if ($attributes->hasComponentAttribute($lineSpacing)) {
33 $lineSpacingValue = trim(strtolower($attributes->getValueAndRemove($lineSpacing)));
37 $attributes->addClassName("lh-1");
41 $attributes->addClassName("lh-sm");
45 $attributes->addClassName("lh-base");
49 $attributes->addClassName("lh-lg");
H A DBlockquoteTag.php157 $attributes = $openingTag->getAttributes();
243 PluginUtility::ATTRIBUTES => $attributes
H A DCacheTag.php18 public static function handle(TagAttributes $attributes): array argument
21 $cronExpression = $attributes->getValue(self::EXPIRATION_ATTRIBUTE);
H A DCall.php371 * @return mixed the data returned from the {@link DokuWiki_Syntax_Plugin::handle} (ie attributes, payload, ...)
413 * Return the attributes of a call
435 $attributes = &$data[PluginUtility::ATTRIBUTES];
436 if (!is_array($attributes)) {
437 $message = "The attributes value are not an array for the call ($this), the value was wrapped in an array";
439 $attributes = [$attributes];
441 return $attributes;
456 function updateToPluginComponent($component, $state, $attributes = array())
467 PluginUtility::ATTRIBUTES => $attributes,
454 updateToPluginComponent($component, $state, $attributes = array()) global() argument
[all...]
H A DCallStack.php285 * @param array $attributes - the attributes in an callstack array form passed to the paragraph
288 function processEolToEndStack(array $attributes = []) argument
291 \syntax_plugin_combo_para::fromEolToParagraphUntilEndOfStack($this, $attributes);
/plugin/combo/syntax/
H A Dcodemarkdown.php145 $attributes = [TagAttributes::TYPE_KEY => $language];
148 PluginUtility::ATTRIBUTES => $attributes
186 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], syntax_plugin_combo_code::CODE_TAG);
187 Prism::htmlEnter($renderer, $this, $attributes);
214 $attributes = $data[PluginUtility::ATTRIBUTES];
216 $language = strtolower($attributes["type"]);
H A Dfooter.php172 $attributes = $data[PluginUtility::ATTRIBUTES];
173 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, self::TAG);
H A Dfrontmatter.php327 $attributes = [MarkupRef::REF_ATTRIBUTE => ":$dokuwikiId"];
329 syntax_plugin_combo_media::registerImageMeta($attributes, $renderer);
368 $attributes = $media->toCallStackArray();
369 syntax_plugin_combo_media::updateStatistics($attributes, $renderer);
H A Dheadingatx.php85 $attributes = [HeadingTag::LEVEL => strlen(trim($match))];
101 PluginUtility::ATTRIBUTES => $attributes,
137 $attributes = $data[PluginUtility::ATTRIBUTES];
139 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, HeadingTag::HEADING_TAG);
147 $attributes = $data[PluginUtility::ATTRIBUTES];
148 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
H A Dheadingwiki.php132 $attributes = TagAttributes::createEmpty(self::TAG)
141 PluginUtility::ATTRIBUTES => $attributes,
H A Diteratordata.php133 $attributes = PluginUtility::getTagAttributes($match);
136 PluginUtility::ATTRIBUTES => $attributes
H A Ditext.php13 * Setting text attributes on words
93 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes);
95 $callStackArray = $attributes->toCallStackArray();
H A Dlabel.php200 $attributes = $data[PluginUtility::ATTRIBUTES];
201 $renderer->doc .= TabsTag::openNavigationalTabElement($attributes);
204 $attributes = PanelTag::CONTEXT_PREVIEW_ALONE_ATTRIBUTES;
206 $renderer->doc .= TabsTag::openNavigationalTabElement($attributes);
H A Dnote.php110 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knwonTypes);
113 PluginUtility::ATTRIBUTES => $attributes->toCallStackArray()
155 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES], self::TAG);
156 $attributes->addClassName("alert");
157 $type = $attributes->getValue(TagAttributes::TYPE_KEY);
169 $attributes->addClassName("alert-" . $type);
173 if (!$attributes->hasComponentAttribute(ColorRgb::COLOR)) {
174 $attributes->addComponentAttributeValue(ColorRgb::COLOR, "#6c6400"); // lum - 51
176 if (!$attributes->hasComponentAttribute("border-color")) {
177 $attributes
[all...]
H A Dpara.php195 $attributes = $data[PluginUtility::ATTRIBUTES];
196 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
204 $attributes = $data[PluginUtility::ATTRIBUTES];
205 $tagAttributes = TagAttributes::createFromCallStackArray($attributes);
250 * @param array $attributes - the attributes passed to the paragraph
252 public static function fromEolToParagraphUntilEndOfStack(CallStack &$callstack, array $attributes) argument
255 if (!is_array($attributes)) {
256 LogUtility::msg("The passed attributes array ($attributes) fo
[all...]
H A Dpreformatted.php150 $attributes = [];
153 PluginUtility::ATTRIBUTES => $attributes
H A Drelated.php109 $attributes = [];
113 $attributes = $tagAttributes->toCallStackArray();
117 PluginUtility::ATTRIBUTES => $attributes
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadata.php551 * @param array $attributes
553 public static function upsertMetaOnUniqueAttribute(&$metaArray, string $uniqueAttribute, array $attributes) argument
563 if ($value === $attributes[$uniqueAttribute]) {
564 $metaArray[$key] = $attributes;
569 $metaArray[] = $attributes;
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DExplain.php54 * @param array $attributes
59 string $name, string $content = '', array $attributes = [], string $contentType = 'text' argument
76 foreach ($attributes as $attribute => $value) {

12345678910>>...26