/plugin/creole/_test/ |
H A D | creole.test.php | 31 $xhtml = p_render('xhtml', $instructions, $info); 46 $xhtml = p_render('xhtml', $instructions, $info); 61 $xhtml = p_render('xhtml', $instructions, $info); 77 $xhtml = p_render('xhtml', $instructions, $info); 93 $xhtml = p_render('xhtml', $instructions, $info); 109 $xhtml = p_render('xhtml', $instructions, $info); 125 $xhtml = p_render('xhtml', $instructions, $info); 141 $xhtml = p_render('xhtml', $instructions, $info); 157 $xhtml = p_render('xhtml', $instructions, $info); 173 $xhtml = p_render('xhtml', $instructions, $info); [all …]
|
/plugin/multiorphan/action/ |
H A D | multiorphan.php | 180 if (!is_array($instructions)) { 186 foreach ($instructions as $ins) { 210 'instructions' => $instructions[1], 212 'entryID' => !empty($instructions[1][0]) ? $instructions[1][0] : null, 213 'syntax' => $instructions[0], 292 $instructions = $this->renderer->instructions; 306 if ( is_null($instructions) ) { 310 if ( !is_null($instructions) ) { 339 $instructions = $event->data['instructions']; 350 …event->data['entryID'] = $this->renderer->_resolveInterWiki($instructions[2], $instructions[3], $e… [all …]
|
H A D | pluginSiteexport.php | 39 $instructions = $event->data['instructions']; 40 …if ( $event->data['syntax'] != 'plugin' || $instructions[0] != 'siteexport_toc' || !$this->plugin_… 41 …if ( !is_array($instructions[1]) || array_key_exists('start', $instructions[1]) ) { return false; } 43 $instructions = p_get_instructions($instructions[3]); 46 $this->plugin_orphan->walk_instructions( $links, $event->data['pageID'], $instructions );
|
H A D | pluginBlog.php | 39 $instructions = $event->data['instructions']; 40 …if ( $event->data['syntax'] != 'plugin' || !in_array( $instructions[0], array( 'blog_blog', 'blog_… 44 $data = $this->plugin_blog->getBlog( $instructions[1][0] );
|
/plugin/multiorphan/inc/ |
H A D | MultiOrphanDummyRenderer.php | 14 public $instructions = array(); variable in MultiOrphanDummyRenderer 20 * @param array $instructions 22 function nest($instructions) { argument 23 $this->instructions = array_merge($this->instructions, $instructions); 33 $this->instructions = array();
|
/plugin/yuriigantt/_test/Drivers/ |
H A D | embedded.test.php | 48 $instructions = $handler->calls; 52 $this->assertEquals('raw', $instructions[0][0]); 53 $this->assertEquals('plugin', $instructions[1][0]); 54 $this->assertEquals('yuriigantt', $instructions[1][1][0]); 55 $this->assertInstanceOf(stdClass::class, $instructions[1][1][1]); 56 $this->assertStringStartsWith('~~~~GANTT~~~~', $instructions[1][1][3]); 57 $this->assertStringEndsWith('~~~~~~~~~~~', $instructions[1][1][3]); 58 $this->assertEquals('raw', $instructions[2][0]); 59 $this->assertEquals("\n\n\nzzz\n", $instructions[2][1][0]); 63 foreach ($instructions as $instruction) {
|
/plugin/emoji/_test/ |
H A D | emoji_unicode.test.php | 14 $instructions = p_get_instructions("x" 20 $foundemoji = $this->count_array_values('emoji', $this->flatten_array($instructions), true); 25 $instructions = p_get_instructions("x" 33 $foundemoji = $this->count_array_values('emoji', $this->flatten_array($instructions)); 38 $instructions = p_get_instructions("x" 45 $foundemoji = $this->count_array_values('emoji', $this->flatten_array($instructions), true); 50 $instructions = p_get_instructions("x" 57 $foundemoji = $this->count_array_values('emoji', $this->flatten_array($instructions));
|
/plugin/log/ |
H A D | syntax.php | 53 $instructions = p_cached_instructions(wikiFN($logpage),false,$logpage); 56 $max = count($instructions); 64 switch ($instructions[$i][0]) { 68 $type = substr($instructions[$i][0], 4, 1); 74 $instructions = array_slice($instructions, $start, $i - $start + 1); 80 $instructions = array_slice($instructions, $start, $i - $start); 87 $instructions = $empty_list; 90 return array(array_merge($instructions,
|
/plugin/wrap/_test/ |
H A D | wrap_syntax.test.php |
|
/plugin/siteexport/syntax/ |
H A D | toc.php | 201 … $instructions = $this->_convertInstructions($instructions, $addID = null, $renderer, $depth); 210 …$instructions = $this->_mergeWithHeaders($this->_initialHeaderStructure($instructions), $instructi… 663 $inCount = count($instructions); 671 …if (preg_match($tag, $instructions[$i][0]) && preg_match($tag, $instructions[$i+1][0]) && $instruc… 685 array_splice($instructions, $i, 2); 702 $inCount = count($instructions); 712 array_splice($instructions, $i, 1); 717 return $instructions; 726 $this->_cleanAllInstructions($instructions); 728 if (empty($instructions)) { return; } [all …]
|
/plugin/webcomponent/ |
H A D | webcomponent.php | 100 $instructions = p_get_instructions($doku_text); 101 $lastPBlockPosition = sizeof($instructions) - 2; 102 if ($instructions[1][0] == 'p_open') { 103 unset($instructions[1]); 105 if ($instructions[$lastPBlockPosition][0] == 'p_close') { 106 unset($instructions[$lastPBlockPosition]); 108 return p_render('xhtml', $instructions, $info);
|
/plugin/navi/ |
H A D | syntax.php | 118 if (!$instructions) return []; 121 $max = count($instructions); 131 if ($instructions[$i][0] == 'listu_open') { 135 } elseif ($instructions[$i][0] == 'listu_close') { 139 unset($instructions[$i]); 142 } elseif ($instructions[$i][0] == 'internallink') { 144 $page = $instructions[$i][1][0]; 149 'title' => $instructions[$i][1][1], 152 } elseif ($instructions[$i][0] == 'externallink') { 153 $url = $instructions[$i][1][0]; [all …]
|
/plugin/webcomponent/_test/ |
H A D | blockquote.test.php | 39 $instructions = p_get_instructions($doku_text); 40 $xhtml = p_render('xhtml', $instructions, $info); 58 $instructions = p_get_instructions($doku_text); 59 $xhtml = p_render('xhtml', $instructions, $info); 77 $instructions = p_get_instructions($doku_text); 78 $xhtml = p_render('xhtml', $instructions, $info);
|
H A D | card.test.php | 35 $instructions = p_get_instructions($doku_text); 36 $xhtml = p_render('xhtml', $instructions, $info); 70 $instructions = p_get_instructions($doku_text.$doku_text); 71 $xhtml = p_render('xhtml', $instructions, $info);
|
/plugin/instructions/ |
H A D | plugin.info.txt | 1 base instructions 5 name instructions plugin 6 desc Special syntax for instructions 7 url http://dokuwiki.org/plugin:instructions
|
/plugin/bpmnio/_test/ |
H A D | syntax_plugin_bpmnio_bpmnio.test.php | 26 $instructions = p_get_instructions($input); 27 $xhtml = p_render('xhtml', $instructions, $info); 48 $instructions = p_get_instructions($input); 49 $xhtml = p_render('xhtml', $instructions, $info);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataLabeling/ |
H A D | GoogleCloudDatalabelingV1beta1ListInstructionsResponse.php | 33 public function setInstructions($instructions) argument 35 $this->instructions = $instructions; 42 return $this->instructions;
|
/plugin/strata/types/ |
H A D | wiki.php | 186 $instructions = $this->_instructions($value); 187 $instructions = array_slice($instructions, 2, -2); 190 if(!empty($instructions[0][0]) && $instructions[0][0]=='cdata') { 191 $instructions[0][1][0] = ltrim($instructions[0][1][0]); 195 $R->nest($instructions);
|
/plugin/dwinsect/ |
H A D | syntax.php | 191 $instructions=p_get_instructions($wiki); 192 array_shift($instructions); //remove document open 193 array_shift($instructions); //remove paragraph open 194 array_pop($instructions); //remove document close 195 array_pop($instructions); //remove paragraph close 196 return array($state, array($instructions, false)); 222 list($instructions, $error) = $result; 224 … $renderer->internallink("[*(".$instructions.")]"); // instructions contains the error-text 227 $renderer->nest($instructions);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/ |
H A D | MapTask.php | 55 public function setInstructions($instructions) argument 57 $this->instructions = $instructions; 64 return $this->instructions;
|
H A D | StreamingComputationConfig.php | 59 public function setInstructions($instructions) argument 61 $this->instructions = $instructions; 68 return $this->instructions;
|
/plugin/eventline/ |
H A D | getXmlData.php | 27 $instructions = $cache->retrieveCache(); 29 $instructions = p_get_instructions(io_readfile($pagePath)); 30 $cache->storeCache($instructions); 37 foreach ( $instructions as $instruction ) {
|
/plugin/combo/ComboStrap/ |
H A D | MarkupRenderer.php | 10 * Setting the mime to instructions will just not do any render processing. 11 * Just parse tree/instructions processing if needed 20 * @var string source of the renderer is a markup (and not instructions) 24 * @var array source of the rendere is instructions 43 * @var ?Path the path from where the instructions/markup where created 76 public static function createFromMarkupInstructions($instructions, FetcherMarkup $fetcherMarkup): MarkupRenderer argument 79 ->setInstructions($instructions) 84 public static function createFromInstructions($instructions): MarkupRenderer argument 86 return (new MarkupRenderer())->setInstructions($instructions); 114 * Get the instructions adapte 164 setInstructions(array $instructions) global() argument [all...] |
/plugin/webcomponent/syntax/ |
H A D | card.php | 214 $instructions = p_get_instructions($parameters); 215 $lastPBlockPosition = sizeof($instructions) - 2; 216 if ($instructions[1][0] == 'p_open') { 217 unset($instructions[1]); 219 if ($instructions[$lastPBlockPosition][0] == 'p_close') { 220 unset($instructions[$lastPBlockPosition]); 222 $this->text .= p_render('xhtml', $instructions, $info);
|
/plugin/webcode/syntax/ |
H A D | basis.php | 46 * @param array $instructions 51 private static function p_render($mode, array $instructions, array &$info) argument 53 if (is_null($instructions)) return ''; 54 if ($instructions === false) return ''; 70 foreach ($instructions as $instruction) { 391 $instructions = p_get_instructions($textToRender); 392 $xhtmlWebCode = self::p_render('xhtml', $instructions, $renderer->info); 410 $instructions = p_get_instructions($this->codes['dw']); 411 $renderer->doc .= self::p_render('xhtml', $instructions, $renderer->info);
|