Home
last modified time | relevance | path

Searched refs:instructions (Results 26 – 50 of 166) sorted by relevance

1234567

/plugin/combo/ComboStrap/
H A DFetcherMarkup.php53 * * or an instructions (template)
90 * @var FetcherMarkup - the parent (a instructions run may run inside a path run, ie {@link \syntax_plugin_combo_iterator)
208 * This is needed for instructions or markup run
238 public function deleteRootPElementsIfRequested(array &$instructions): void argument
251 if ($instructions[1][0] !== 'p_open') {
254 unset($instructions[1]);
262 while (($lastPBlockPosition = (sizeof($instructions) - $n)) >= 0) {
267 if ($instructions[$lastPBlockPosition][0] == 'p_close') {
268 unset($instructions[$lastPBlockPosition]);
573 * function to get the instructions
[all...]
/plugin/flowcharts/
H A Dsyntax.php74 $instructions = $this->p_get_instructions($match);
75 $xhtml = $this->p_render($instructions);
134 public function p_render($instructions) { argument
143 foreach ($instructions as $instruction) {
/plugin/mermaid/
H A Dsyntax.php102 $instructions = $this->p_get_instructions($this->protect_brackets_from_dokuwiki($match));
103 $xhtml = $this->remove_protection_of_brackets_from_dokuwiki($this->p_render($instructions));
117 * Get the parser instructions suitable for the mermaid
170 public function p_render($instructions)
174 // Loop through the instructions
175 foreach ($instructions as $instruction) {
139 p_render($instructions) global() argument
/plugin/multiorphan/action/
H A DpluginDir.php39 $instructions = $event->data['instructions'];
40 …if ( $event->data['syntax'] != 'plugin' || $instructions[0] != 'dir' || !$this->plugin_dir ) { ret…
42 $data = $this->plugin_dir->handle($instructions[1], null, null, new Doku_Handler());
/plugin/sortablejs/
H A Dsyntax.php72 $instructions = p_get_instructions( $match );
73 foreach( $instructions as $instruction ) {
91 $instructions = array_slice( p_get_instructions( $match ), 1, -1 );
92 foreach( $instructions as $instruction ) {
/plugin/filelist/_test/
H A Dfilelist.test.php
/plugin/instructions/
H A Dmanager.dat1 …adurl=https://github.com/Juergen-aus-Koeln/dokuwiki-plugin-instructions/raw/master/instructions.zip
H A DREADME.md1 # dokuwiki-plugin-instructions
4 For details have a look at https://www.dokuwiki.org/plugin:instructions
/plugin/parserarray/
H A Drenderer.php28 $instructions = p_cached_instructions(wikiFN($id),false,$id);
32 print_r($instructions);
/plugin/webcomponent/_test/
H A Dcite.test.php33 $instructions = p_get_instructions($doku_text);
34 $xhtml = p_render('xhtml', $instructions, $info);
H A Dcardcolumns.test.php39 $instructions = p_get_instructions($doku_text);
40 $xhtml = p_render('xhtml', $instructions, $info);
H A Dbutton.test.php36 $instructions = p_get_instructions($doku_text);
37 $xhtml = p_render('xhtml', $instructions, $info);
H A Dmath.test.php38 $instructions = p_get_instructions($doku_text);
39 $xhtml = p_render('xhtml', $instructions, $info);
/plugin/editsections2/
H A Daction.php165 list($handler_name, $instructions) = array(0, 1);
170 $section_level = $calls[$i][$instructions][0];
210 list($handler_name, $instructions) = array(0, 1);
218 $sections[] =& $calls[$i][$instructions];
/plugin/commentsyntax/_test/
H A Dsyntax.test.php36 $instructions = p_get_instructions($text);
37 $xhtml = p_render('xhtml', $instructions, $info);
/plugin/popupviewer/
H A Daction.php121 $instructions = $event->data['instructions'];
122 if ( !strstr($instructions[0], 'popupviewer') ) {
126 $event->data['entryID'] = $id = cleanID($instructions[1][0]);
/plugin/tipoftheday/syntax/
H A Dtotd.php100 $instructions = p_cached_instructions(wikiFN($id));
101 if ( !is_array($instructions) ) return array();
103 foreach ($instructions as $ins) {
/plugin/pagetemplate/
H A Dpagetemplate_backlinks.php66 $instructions = _pt_get_instructions(io_readfile($file));
67 if(is_null($instructions)) return false;
71 foreach($instructions as $ins){
H A Daction.php119 $instructions = _pt_get_instructions(io_readfile($base.$file));
120 if(is_null($instructions)) return false;
124 foreach($instructions as $ins){
/plugin/strata/
H A Daction.php62 // get instructions
63 $instructions = p_get_instructions($text);
64 if(is_null($instructions)){
66 return null; // something went wrong with the instructions
74 // loop through the instructions
75 foreach ($instructions as $instruction){
/plugin/lms/
H A Dhelper.php206 $instructions = p_cached_instructions(wikiFN($cp), false, $cp);
207 if ($instructions === null) return [];
209 foreach ($instructions as $instruction) {
/plugin/ajaxedit/
H A Daction.php55 $instructions = p_cached_instructions($INFO['filepath']); //get instructions
60 foreach($instructions as $key => $instruction) {
/plugin/linkfix/
H A Dadmin.php142 $instructions = p_get_instructions($text);
143 $instructions = array_reverse($instructions);
152 foreach($instructions as $instruction) {
/plugin/numberedheadings/
H A Daction.php37 $instructions =& $event->data->calls;
39 foreach ($instructions as $k => &$ins) {
49 //unset($instructions[$k]);
79 //unset($instructions[$k]);
/plugin/newsticker/syntax/
H A Dticker.php63 $instructions = p_get_instructions($newsItem);
64 $render = p_render('xhtml',$instructions, $info);

1234567