Home
last modified time | relevance | path

Searched refs:defaultAttributes (Results 1 – 12 of 12) sorted by relevance

/plugin/combo/ComboStrap/
H A DXmlTagProcessing.php286 $defaultAttributes = [];
297 $defaultAttributes = array("type" => BlockquoteTag::CARD_TYPE);
301 $defaultAttributes[BoxTag::HTML_TAG_ATTRIBUTE] = BoxTag::DEFAULT_HTML_TAG;
302 $defaultAttributes[BoxTag::LOGICAL_TAG_ATTRIBUTE] = BoxTag::LOGICAL_TAG_DEFAUT;
308 $defaultAttributes = array(
320 $defaultAttributes[Hero::ATTRIBUTE] = "sm";
330 $defaultAttributes[TagAttributes::TYPE_KEY] = $executionContext->getConfig()->getValue(ContainerTag::DEFAULT_LAYOUT_CONTAINER_CONF, ContainerTag::DEFAULT_LAYOUT_CONTAINER_DEFAULT_VALUE);
344 $defaultAttributes = PluginUtility::parseAttributes($defaultConfValue);
345 if (!isset($defaultAttributes[TagAttributes::TYPE_KEY])) {
346 $defaultAttributes[TagAttribute
[all...]
H A DGridTag.php114 $defaultAttributes = [];
132 $defaultAttributes = [
161 foreach ($defaultAttributes as $key => $value) {
H A DPluginUtility.php568 * @param array $defaultAttributes - the default configuration attributes
572 static function mergeAttributes(array $inlineAttributes, array $defaultAttributes = array()) argument
574 return array_merge($defaultAttributes, $inlineAttributes);
H A DTagAttributes.php306 * @param array $defaultAttributes - the default attributes values
311 public static function createFromTagMatch($match, array $defaultAttributes = [], array $knownTypes = [], bool $allowFirstBooleanAttributesAsType = false): TagAttributes argument
315 $mergedAttributes = PluginUtility::mergeAttributes($inlineHtmlAttributes, $defaultAttributes);
/plugin/combo/syntax/
H A Ditext.php92 $defaultAttributes = [];
93 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes);
H A Dmetadata.php45 $defaultAttributes = PluginUtility::parseAttributes($defaultStringAttributes);
46 $attributes = PluginUtility::mergeAttributes($inlineAttributes, $defaultAttributes);
H A Dwebcode.php159 $defaultAttributes = WebCodeTag::getDefaultAttributes();
163 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes);
H A Dnote.php108 $defaultAttributes = array(TagAttributes::TYPE_KEY => self::INFO_TYPE);
110 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knwonTypes);
H A Dcell.php157 $defaultAttributes = [];
158 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes)->toCallStackArray();
H A Dbrand.php133 $defaultAttributes = [TagAttributes::TYPE_KEY => Brand::CURRENT_BRAND];
134 $tagAttributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, [], true)
/plugin/combo/ComboStrap/Tag/
H A DWebCodeTag.php72 $defaultAttributes = array();
73 $defaultAttributes[Dimension::WIDTH_KEY] = '100%';
77 return $defaultAttributes;
/plugin/gallery/script/
H A Dprosemirror.js387 var defaultAttributes = Object.entries(schema.nodes.dwplugin_gallery.attrs)
398 getGalleryFormFields(defaultAttributes)