Home
last modified time | relevance | path

Searched refs:attrs (Results 51 – 75 of 188) sorted by relevance

12345678

/plugin/translate/
H A Daction.php177 $attrs=Array();
178 $attrs['readonly']='readonly';
179 $attrs['cols']=80;
180 $attrs['rows']=10;
181 $attrs['style']='width:100%;';
182 $attrs['readonly']='readonly';
183 $form->addTextarea('origWikitext', '', $pos++)->attrs($attrs)->val($origtext)
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/Renderer/Inline/
H A DLinkRenderer.php43 $attrs = $node->data->get('attributes');
47 $attrs['href'] = $node->getUrl();
50 $result = '[[' . $attrs['href'] . '|' . $DWRenderer->renderNodes($node->children()) . ']]';
/plugin/bureaucracyau/helper/
H A Dfieldradio.php70 $attrs = array('checked' => 'checked');
72 $attrs = array();
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
/plugin/bureaucracy-au/helper/
H A Dfieldradio.php70 $attrs = array('checked' => 'checked');
72 $attrs = array();
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkRenderer.php57 $attrs = $node->data->getData('attributes');
67 $attrs->set('id', $idPrefix . $slug);
70 $attrs->set('href', '#' . $fragmentPrefix . $slug);
71 $attrs->append('class', $this->config->get('heading_permalink/html_class'));
75 $attrs->set('aria-hidden', 'true');
78 $attrs->set('title', $this->config->get('heading_permalink/title'));
83 return new HtmlElement('a', $attrs->export(), \htmlspecialchars($symbol), false);
/plugin/bureaucracy/helper/
H A Dfieldradio.php70 $attrs = array('checked' => 'checked');
72 $attrs = array();
79 $form->addElement(form_makeRadioField($name, $val, $val, $_id, $class, $attrs));
/plugin/sequencediagram/bower_components/raphael/dev/
H A Draphael.vml.js144 o.attrs = o.attrs || {};
146 a = o.attrs,
367 o.attrs = o.attrs || {};
368 var attrs = o.attrs,
431 this.attrs = {};
623 for (var a in this.attrs) if (this.attrs[has](a)) {
761 a = res.attrs;
850 p.attrs.x = x;
851 p.attrs.y = y;
852 p.attrs.w = 1;
[all …]
/plugin/odt/ODT/styles/
H A DODTTextStyle.php186 $attrs = 0;
190 $attrs += $style->importODTStyleInternal(ODTStyleStyle::getStyleProperties (), $open);
195 … $attrs += $style->importODTStyleInternal(ODTStyleStyle::getStyleProperties (), $open);
201 $attrs += $style->importODTStyleInternal(self::$text_fields, $open);
205 if ( $attrs == 0 ) {
H A DODTParagraphStyle.php199 $attrs = 0;
203 …$attrs += $style->importODTStyleInternal(ODTStyleStyle::getStyleProperties (), $open, $style->styl…
208 …$attrs += $style->importODTStyleInternal(ODTStyleStyle::getStyleProperties (), $open, $style->styl…
214 $attrs += $style->importODTStyleInternal(self::$paragraph_fields, $xmlCode);
219 …$attrs += $style->importODTStyleInternal(ODTTextStyle::getTextProperties (), $open, $style->text_p…
232 …$attrs += $style->importODTStyleInternal(self::$tab_stop_fields, $tab, $style->tab_stops [$index]);
240 if ( $attrs == 0 ) {
H A DODTStyle.php188 $attrs = 0;
200 $attrs++;
204 return $attrs;
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dmodel.js57 parse: function(attrs) { argument
58 attrs.value += 1;
59 return attrs;
99 parse: function(attrs) { argument
100 attrs.value += 1;
284 a.validate = function(attrs) { argument
299 validate: function(attrs) { argument
300 if (attrs.x > 1) {
533 obj.set(attrs);
806 if (!attrs.name) {
[all …]
/plugin/inlinejs/syntax/
H A Dpreloader.php149 if (preg_match('/\bhref=\"([^\"]*)\" ?/', $match, $attrs)) {
150 $this->_add_entry('link', $attrs[1]);
160 if (preg_match('/\bsrc=\"([^\"]*)\" ?/', $match, $attrs)) {
161 $this->_add_entry('js', $attrs[1]);
/plugin/html2pdf/html2pdf/html2ps/
H A Dxhtml.utils.inc.php260 $attrs = array();
266 if (!isset($attrs[$attr])) {
267 $attrs[$attr] = $value;
275 if (!isset($attrs[$attr])) {
276 $attrs[$attr] = $value;
284 if (!isset($attrs[$attr])) {
285 $attrs[$attr] = $value;
298 foreach ($attrs as $key => $value) {
/plugin/commonmark/vendor/league/commonmark/src/Inline/Renderer/
H A DStrongRenderer.php
H A DEmphasisRenderer.php
H A DCodeRenderer.php
/plugin/commonmark/vendor/league/commonmark/src/Block/Renderer/
H A DThematicBreakRenderer.php
H A DHeadingRenderer.php
H A DIndentedCodeRenderer.php
H A DParagraphRenderer.php
/plugin/bibtex/OSBib/
H A DPARSEXML.php94 function startElement($parser, $name, $attrs)
98 if(!empty($attrs) && ($name == "resource"))
99 $node["_ATTRIBUTES"] = $attrs;
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableRowRenderer.php37 $attrs = $node->data->get('attributes');
41 return new HtmlElement('tr', $attrs, $separator . $childRenderer->renderNodes($node->children()) . $separator);
H A DTableRenderer.php37 $attrs = $node->data->get('attributes');
43 return new HtmlElement('table', $attrs, $separator . \trim($children) . $separator);
H A DTableSectionRenderer.php41 $attrs = $node->data->get('attributes');
47 return new HtmlElement($tag, $attrs, $separator . $childRenderer->renderNodes($node->children()) . $separator);
/plugin/diagrams/script/
H A DDiagramsView.js16 * @param {object} attrs
18 renderNode(attrs) { argument
41 this.node.attrs,

12345678