/dokuwiki/inc/Parsing/Handler/ |
H A D | Nest.php | 31 $this->calls[] = $call; 35 public function writeCalls($calls) argument 37 $this->calls = array_merge($this->calls, $calls); 43 $last_call = end($this->calls); 55 $unmerged_calls = $this->calls; 56 $this->calls = array(); 60 $first_call = reset($this->calls); 71 $key = count($this->calls); 72 if ($key and ($call[0] == 'cdata') and ($this->calls[$key-1][0] == 'cdata')) { 73 $this->calls[$key-1][1][0] .= $call[1][0]; [all …]
|
H A D | AbstractRewriter.php | 14 public $calls = array(); variable in dokuwiki\\Parsing\\Handler\\AbstractRewriter 25 $this->calls[] = $call; 29 public function writeCalls($calls) argument 31 $this->calls = array_merge($this->calls, $calls);
|
H A D | Block.php | 12 protected $calls = array(); variable in dokuwiki\\Parsing\\Handler\\Block 109 $i=count($this->calls)-1; 110 … if ($this->calls[$i][0] == 'cdata') $this->calls[$i][1][0] = rtrim($this->calls[$i][1][0], "\n"); 120 $key = count($this->calls); 124 $this->calls[] = $call; 131 $this->calls[] = $call; 140 * @param array $calls 144 public function process($calls) argument 190 if (isset($calls[$key+1]) && $calls[$key+1][0] == 'eol') { 205 $call = end($this->calls); [all …]
|
H A D | CallWriter.php | 22 $this->Handler->calls[] = $call; 26 public function writeCalls($calls) argument 28 $this->Handler->calls = array_merge($this->Handler->calls, $calls);
|
H A D | CallWriterInterface.php | 17 * @param array[] $calls list of calls to be appended 19 public function writeCalls($calls); argument
|
H A D | Preformatted.php | 14 $last_call = end($this->calls); 25 foreach ($this->calls as $call) {
|
H A D | ReWriterInterface.php | 9 * @property array[] $calls The list of current calls
|
H A D | Quote.php | 12 $last_call = end($this->calls); 26 foreach ($this->calls as $call) {
|
H A D | Lists.php | 17 $last_call = end($this->calls); 29 foreach ($this->calls as $call) {
|
H A D | Table.php | 21 $last_call = end($this->calls); 32 foreach ($this->calls as $call) {
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Client/ |
H A D | ClientMulticall.php | 12 private $calls = []; variable in IXR\\Client\\ClientMulticall 28 $this->calls[] = $struct; 34 return parent::query('system.multicall', $this->calls);
|
/dokuwiki/inc/parser/ |
H A D | handler.php | 22 public $calls = array(); variable in Doku_Handler 123 $last_call = end($this->calls); 124 array_push($this->calls,array('section_close',array(), $last_call[2])); 129 $this->calls = $B->process($this->calls); 134 array_unshift($this->calls,array('document_start',array(),0)); 135 $last_call = end($this->calls); 136 array_push($this->calls,array('document_end',array(),$last_call[2])); 146 $call = current($this->calls); 148 next($this->calls); //advance the pointer
|
/dokuwiki/inc/Parsing/ |
H A D | Parser.php | 125 return $this->handler->calls;
|
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/ |
H A D | Server.php | 175 $result = new Error(-32600, 'Recursive calls to system.multicall are forbidden');
|
/dokuwiki/vendor/simplepie/simplepie/ |
H A D | CHANGELOG.md | 19 * PHP 7.4 support: Ensure the proper argument order for `implode()` calls. [#617](https://github.co… 21 * Preemptively changed `is_writeable()` calls to `is_writable()` in case the former is deprecated i…
|
/dokuwiki/vendor/geshi/geshi/ |
H A D | CHANGELOG | 495 * Keyword Linking now uses considerably less strtolower calls (milian) 498 * Use considerably less strlen() calls on various points by caching the results (milian) 517 * Make sure strict_mode is set properly when doing repeated set_language calls (milian) 538 this makes is_a calls unneeded and thus prevents PHP notices in PHP 5.x (milian) 965 set used by calls to htmlentities() in GeSHi
|