Home
last modified time | relevance | path

Searched refs:attributes (Results 126 – 150 of 644) sorted by last modified time

12345678910>>...26

/plugin/combo/syntax/
H A Daccordion.php149 $attributes = TagAttributes::createFromTagMatch($match)
154 $attributes->addClassName("accordion");
156 if (!$attributes->hasComponentAttribute(TagAttributes::ID_KEY)) {
158 $attributes->addComponentAttributeValue(TagAttributes::ID_KEY, $idKey);
163 PluginUtility::ATTRIBUTES => $attributes->toCallStackArray()
203 $attributes = TagAttributes::createFromCallStackArray($data[PluginUtility::ATTRIBUTES])
205 $renderer->doc .= $attributes->toHtmlEnterTag("div");
H A Danalytics.php113 $attributes = $data[PluginUtility::ATTRIBUTES];
114 $renderer->stats[renderer_plugin_combo_analytics::SYNTAX_COUNT] = $attributes;
H A Dcell.php158 $attributes = TagAttributes::createFromTagMatch($match, $defaultAttributes, $knownTypes)->toCallStackArray();
163 PluginUtility::ATTRIBUTES => $attributes);
251 $attributes = TagAttributes::createFromCallStackArray($callStackArray, self::TAG);
256 $attributes->addClassName(self::FLEX_CLASS);
260 $attributes->addClassName("justify-content-center");
262 $renderer->doc .= $attributes->toHtmlEnterTag("div");
H A Dcite.php98 $attributes = TagAttributes::createFromTagMatch($match)->toCallStackArray();
101 PluginUtility::ATTRIBUTES => $attributes
137 $attributes = $data[PluginUtility::ATTRIBUTES];
138 $tagAttributes = TagAttributes::createFromCallStackArray($attributes, self::TAG);
H A Dcontentlistitem.php131 $attributes = TagAttributes::createFromTagMatch($match);
135 PluginUtility::ATTRIBUTES => $attributes->toCallStackArray(),
/plugin/combo/ComboStrap/
H A DLang.php20 * @param TagAttributes $attributes
34 public static function processLangAttribute(&$attributes) argument
42 if ($attributes->hasComponentAttribute(self::PROPERTY_NAME)) {
43 $langValue = $attributes->getValueAndRemove(self::PROPERTY_NAME);
44 $attributes->addOutputAttributeValue("lang", $langValue);
88 $attributes->addOutputAttributeValue("dir", "rtl");
90 $attributes->addOutputAttributeValue("dir", "ltr");
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...]
/plugin/codify/
H A Dsyntax.php25 $attributes = trim(substr($match, 7, -1));
26 $chunk = preg_split("/\s+/", $attributes);
/plugin/data/Form/
H A DDropdownElement.php47 if (isset($this->attributes['multiple'])) {
/plugin/adhoctags/
H A DREADME.md70 Instead of specifying the attributes in the HTML format, this plugin replicates and expands the formats used by the **wrap** plugin, which allows to specify the attributes as in the following example:
88 - `[name=value]` – extended format for all other allowed attributes. For example, `[style=color:red]`, or `[dir=ltr]` to override the text direction set by the `:lang` attribute, etc.
90 Generally, attributes can appear in any order and are always optional!
105 **2. Remove the attribute name from *title="…"* attributes**
117 In most cases, these should take care of the vast majority of HTML attributes. Make sure to check each file and clean up anything that these searches didn't catch.
119 If needed, similar searches can also be used for other attributes (e.g. ` style="([^\"]*)"` -> ` [style=$1]` for style), but it is probably a good idea to manually update these, rather than relying on automatisms.
/plugin/bpmnio/vendor/bpmn-js/
H A DCHANGELOG.md57 * `FIX`: missing special attributes in `bpmnElementFactory` ([#1807](https://github.com/bpmn-io/bpm…
333 * `FIX`: correctly serialize `xml` attributes on `Any` elements
872 * `FIX`: correctly serialize extension attributes on `bpmn:Expression`
/plugin/bpmnio/vendor/bpmn-js/dist/
H A Dbpmn-modeler.production.min.js2 …break;case 1:if(t.push("<",e.tagName),e.hasAttributes())for(n=0,i=(r=e.attributes).length;n<i;++n)…
7attributes,i=this.type,r=Hi(i),o=this.context,a=new i({}),s=this.model;return g(n,(function(e,n){v…
33 …lySetInnerHTML,!s){if(null!=o)for(u={},f=0;f<e.attributes.length;f++)u[e.attributes[f].name]=e.att…
H A Dbpmn-navigated-viewer.production.min.js2attributes).length;n<i;++n)o=r.item(n),t.push(" ",o.name,'="',Y(o.value,U),'"');if(e.hasChildNodes…
H A Dbpmn-viewer.production.min.js2attributes).length;n<i;++n)o=r.item(n),t.push(" ",o.name,'="',Y(o.value,U),'"');if(e.hasChildNodes…
/plugin/bpmnio/vendor/dmn-js/dist/
H A Ddmn-modeler.production.min.js2attributes,i=this.type,r=vt(i),o=this.context,a=new i({}),s=this.model;return Ve(n,(function(e,n){…
21 …lySetInnerHTML,!s){if(null!=o)for(d={},f=0;f<e.attributes.length;f++)d[e.attributes[f].name]=e.att…
H A Ddmn-navigated-viewer.production.min.js2attributes,r=this.type,i=Je(r),o=this.context,a=new r({}),s=this.model;return ke(n,(function(e,n){…
H A Ddmn-viewer.production.min.js2attributes,r=this.type,i=Je(r),o=this.context,a=new r({}),s=this.model;return Ee(n,(function(e,n){…
/plugin/katex/_assets/
H A Dkatex.min.js1attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},t){t.style.isTight()&… property in AnonymousFunctionf879a824bc00.case
/plugin/sql2wiki/syntax/
H A Dquery.php46 $attributes = [];
47 foreach($xml[0]->attributes() as $a => $b) {
48 $attributes[$a] = (string) $b;
50 if (!isset($attributes['db']) || !isset($attributes['query'])) {
51 msg('"db" and "query" attributes are required.', -1);
61 foreach ($attributes as $name => $value) {
76 if (isset($attributes['args'])) {
77 $args = array_map('trim', explode(',', $attributes['args']));
83 'db' => $attributes['d
[all...]
/plugin/odt/ODT/
H A DODTFootnote.php23 function footnoteOpen(ODTInternalParams $params, $element=NULL, $attributes=NULL) { argument
H A DODTHeading.php20 …public function heading(ODTInternalParams $params, $text, $level, $element=NULL, $attributes=NULL){ argument
H A DODTImport.php509 $attributes = $elementParams ['attributes'];
512 $htmlStack->open($element, $attributes);
615 $attributes = $elementParams ['attributes'];
619 $htmlStack->open($element, $attributes, $pseudo_class, NULL);
646 …nternalParams $params, cssdocument $htmlStack, $style_type, $element, $attributes=NULL, array $pla… argument
651 $htmlStack->open($element, $attributes);
H A DODTList.php21 …listOpen(ODTInternalParams $params, $continue=false, $styleName, $element=NULL, $attributes=NULL) { argument
25 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
73 … public function listItemOpen(ODTInternalParams $params, $level, $element=NULL, $attributes=NULL) { argument
89 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
129 …ublic function listHeaderOpen(ODTInternalParams $params, $level, $element=NULL, $attributes=NULL) { argument
145 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
176 …static public function listContentOpen(ODTInternalParams $params, $element=NULL, $attributes=NULL)… argument
H A DODTParagraph.php27 …* @param string $attributes The attributes belonging o the element, e.g. 'class="ex…
29 …unction paragraphOpen(ODTInternalParams $params, $styleName=NULL, $element=NULL, $attributes=NULL){ argument
117 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
156 …* @param string $attributes The attributes belonging o the element, e.g. 'class="ex…
158 …ic static function paragraphOpenUseCSS(ODTInternalParams $params, $element=NULL, $attributes=NULL){ argument
165 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
H A DODTSpan.php18 …c static function spanOpen(ODTInternalParams $params, $styleName, $element=NULL, $attributes=NULL){ argument
24 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
52 … public static function spanOpenUseCSS(ODTInternalParams $params, $element=NULL, $attributes=NULL){ argument
54 ODTUtility::openHTMLElement ($params, $properties, $element, $attributes);
116 public static function createSpanInternal (ODTInternalParams $params, $attributes) { argument
119 ODTUtility::getHTMLElementProperties ($params, $properties, 'span', $attributes);

12345678910>>...26