Home
last modified time | relevance | path

Searched refs:class (Results 2076 – 2100 of 2173) sorted by path

1...<<81828384858687

/plugin/syntaxhighlightjs/static/lib/highlightjs/styles/
H A Dzenburn.min.css1 …bst{color:#8f8f8f}.hljs-title,.hljs-name,.hljs-selector-id,.hljs-selector-class,.hljs-section,.hlj…
/plugin/tabinclude/
H A Dhelper.php47 list($class, $match) = explode('>', $match); // extract class
48 $class=trim($class);
130 return array($state,$tabs,$init_page_idx,hsc(trim($class)));
136 function renderTabsHtml(&$renderer,$tabs,$init_page_idx,$class='') { argument
138 if($class) $class=' class="'.$class.'"';
139 $html.= '<div id="dwpl-ti-container"'.$class.'>'.NL;
185 function renderLinkTabs(&$renderer,$tabs,$init_page_idx,$class='') { argument
191 if($class) $class=' class="'.$class.'"';
192 $html.= '<div id="dwpl-ti-container"'.$class.'>'.NL;
239 if($class) $class=' class="'.$class.'"';
[all …]
/plugin/tabinclude/syntax/
H A Dembed.php30 list($state, $tabs,$init_page_idx,$class) = $data;
32 $this->helper->renderEmbedTabs($renderer,$tabs,$init_page_idx,$class);
H A Dinline.php32 list($state, $tabs,$init_page_idx,$class) = $data;
34 $this->helper->renderTabsHtml($renderer,$tabs,$init_page_idx,$class);
H A Dlines.php34 list($state, $tabs,$init_page_idx,$class) = $data;
36 $this->helper->renderTabsHtml($renderer,$tabs,$init_page_idx,$class);
H A Dlink.php30 list($state, $tabs,$init_page_idx,$class) = $data;
32 $this->helper->renderLinkTabs($renderer,$tabs,$init_page_idx,$class);
/plugin/tableplot/example/
H A DexampleEarthquakePlot.txt4 <table class="sortable" id="Earthquakes">
/plugin/tag/
H A Dhelper.php13 class helper_plugin_tag extends DokuWiki_Plugin {
179 * @param bool $dynamic if the link class shall be changed if no pages with the specified tag exist
196 $class = 'wikilink1';
209 $class = 'wikilink2';
211 $class = 'wikilink1';
214 $class = 'wikilink1';
223 'class' => $class,
228 return '<a href="'.$link['href'].'" class="'.$link['class']
[all...]
/plugin/tag/syntax/
H A Dcount.php14 class syntax_plugin_tag_count extends DokuWiki_Syntax_Plugin {
104 $class = "inline"; // valid: inline, ul, pagelist
107 $renderer->doc .= '<table class="'.$class.'">';
109 $renderer->doc .= '<th class="'.$col.'">'.$this->getLang('tag').'</th>';
110 $renderer->doc .= '<th class="'.$col.'">'.$this->getLang('count').'</th>';
116 $renderer->doc .= '<td class="'.$class.'" colspan="2">'.$this->getLang('empty_output').'</td>';
123 $renderer->doc .= '<td class="'.$class
[all...]
/plugin/tagalerts/
H A Daction.php90 $class = $event->data['class'];
102 $class = $class.' tag'.$type;
112 'class' => $class,
/plugin/targetlink/
H A Dsyntax.php136 $class = 'wikilink1';
138 $class = 'wikilink2';
142 $class = 'media';
160 $link['class'] = $class;
214 $class = 'urlextern';
216 $class = 'media';
226 $link['class'] = $class;
261 $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $wikiName);
262 $link['class'] = "interwiki iw_$class";
/plugin/task/syntax/
H A Dtask.php83 $class = ' class="vtodo';
84 if ($priority) $class .= ' priority' . $priority;
86 $class .= ' '.$due;
90 $class .= '"';
94 . '<fieldset'.$class.'>'.DOKU_LF
/plugin/tcycle/
H A DLICENSE303 typical or common use of that class of product, regardless of the status
/plugin/templateconfhelper/
H A DREADME65 This is a rather creative apporach to hook into css.php. The templateaction plugin class deffinitio…
/plugin/textile2/
H A DclassTextile.php344 $class = '';
374 $class = $cls[1];
392 if (preg_match("/^(.*)#(.*)$/", $class, $ids)) {
394 $class = $ids[1];
402 ($class) ? ' class="' . $class .'"':'',
/plugin/textmodule/
H A Dstyle.css9 /* div-class fr one group of text modules */
22 /* div class for one group when expanded */
/plugin/tgnotify/
H A DLICENSE185 file or class name and description of purpose be included on the
/plugin/timetrack/
H A DLICENSE303 typical or common use of that class of product, regardless of the status
/plugin/tline/
H A DCHANGES.txt40 theme.event.duration.color or css color for class timeline-small-event-tape
42 * Update to send css class to computeSize. Fixes:
177 Another IE only bug: double class name selectors don't work on
178 IE. Eg <div class 'foo bar' /> should be selected with css selector .foo.bar (or .bar.foo)
/plugin/todo/
H A Dstyle.css3 ** add todouser for user assignment css class \n
/plugin/toggle/
H A DLICENSE303 typical or common use of that class of product, regardless of the status
/plugin/togglewrap/
H A Dsyntax.php33 list ($class,$opts) = explode('&', $opts, 2);
34 if (!$label) $label = $class;
36 return array($class, $label, $pos, $opts);
41 list($class, $label, $pos, $opts) = $data;
42 …glewrap_'.$pos.'" type="checkbox" class="togglewrap" value="'.strtolower($class).'" '.(in_array('c…
/plugin/topbarsyntax/
H A Dcsshover3.htc135 // hash it, so an identical selector/class combo does not duplicate the expression
162 // create an instance for the given type and class
/plugin/translate/
H A Dhelper.php220 $class = 'wikilink1';
225 $class = 'wikilink2';
228 …return '<a href="'.$url.'" class="'.$class.'" title="'.hsc($langname).'"'.$more.'>'.hsc($text).'</…
399 $class = ''; // a class could be used on fields for form validation feedback (TODO)
411 …lement(form_makeListboxField('to',$options,$target_lang,$this->getLang('translate_to'),'',$class));
417 …addElement(form_makeTextField('title',$target_title,$this->getLang('translated_title'),'',$class));
435 $class = '';
442 …ent(form_makeListboxField('lang',$options,$_REQUEST['lang'],$this->getLang('language'),'',$class));
443 …form->addElement(form_makeTextField('title',$_REQUEST['title'],$this->getLang('title'),'',$class));
/plugin/translation/
H A Dadmin.php11 class admin_plugin_translation extends AdminPlugin
36 echo "<table id='outdated_translations' class=\"inline\">";
76 $class = "missing";
82 $class = "outdated";
89 $class = "current";
93 $row .= "<td class='$class'>" . $xhtml_renderer->internallink(

1...<<81828384858687