Home
last modified time | relevance | path

Searched refs:call (Results 1 – 25 of 49) sorted by path

12

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt469 | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |
/dokuwiki/inc/
H A DAjax.php20 * Execute the given call
22 * @param string $call name of the ajax call
24 public function __construct($call)
26 $callfn = 'call' . ucfirst($call);
30 $evt = new Event('AJAX_CALL_UNKNOWN', $call);
32 echo "AJAX call '" . hsc($call) . "' unknown!\n";
21 __construct($call) global() argument
H A DPassHash.php118 $call = 'hash_' . $method;
119 $newhash = $this->$call($clear, $salt, $magic);
H A Dauth.php1318 $call = 'hash_' . $method;
1320 if (!method_exists($pass, $call)) {
1325 return $pass->$call($clear, $salt);
/dokuwiki/inc/Debug/
H A DDebugHelper.php51 [$self, $call] = $backtrace;
57 self::formatCall($call),
58 $self['file'] ?? $call['file'] ?? '',
59 $self['line'] ?? $call['line'] ?? 0
64 * Format the given backtrace info into a proper function/method call string
65 * @param array $call
68 protected static function formatCall($call)
71 if (!empty($call['class'])) {
72 $thing .= $call['class'] . '::';
74 $thing .= $call['functio
[all...]
/dokuwiki/inc/Parsing/Handler/
H A DAbstractRewriter.php23 public function writeCall($call) argument
25 $this->calls[] = $call;
H A DBlock.php110 protected function addCall($call)
113 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
114 $this->calls[$key - 1][1][0] .= $call[1][0];
116 $this->calls[] = $call;
121 protected function storeCall($call)
123 $this->calls[] = $call;
140 foreach ($calls as $key => $call) {
141 $cname = $call[0];
143 $cname = 'plugin_' . $call[1][0];
145 $plugin_open = (($call[
118 addCall($call) global() argument
129 storeCall($call) global() argument
[all...]
H A DCallWriter.php19 public function writeCall($call)
21 $this->Handler->calls[] = $call;
32 * function is required, but since this call writer is first/highest in
20 writeCall($call) global() argument
H A DCallWriterInterface.php8 * Add a call to our call list
10 * @param array $call the call to be added
12 public function writeCall($call); argument
15 * Append a list of calls to our call list
25 * If part of a CallWriter chain, call finalise on
26 * the original call writer
H A DLists.php29 foreach ($this->calls as $call) {
30 switch ($call[0]) {
32 $this->listOpen($call);
35 $this->listStart($call);
38 $this->listEnd($call);
41 $this->listContent($call);
50 protected function listStart($call) argument
52 $depth = $this->interpretSyntax($call[1][0], $listType);
58 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
59 $this->listCalls[] = ['listitem_open', [1], $call[
64 listEnd($call) global() argument
78 listOpen($call) global() argument
170 listContent($call) global() argument
[all...]
H A DNest.php6 * Generic call writer class to handle nesting of rendering instructions
18 * @param CallWriterInterface $CallWriter the parser's current call writer, i.e. the one above us in the chain
29 public function writeCall($call) argument
31 $this->calls[] = $call;
58 foreach ($unmerged_calls as $call) $this->addCall($call);
67 * @param array $call
69 protected function addCall($call) argument
72 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
73 $this->calls[$key - 1][1][0] .= $call[
[all...]
H A DPreformatted.php24 foreach ($this->calls as $call) {
25 switch ($call[0]) {
27 $this->pos = $call[2];
33 $this->text .= $call[1][0];
H A DQuote.php26 foreach ($this->calls as $call) {
27 switch ($call[0]) {
31 $this->quoteCalls[] = ['quote_open', [], $call[2]];
34 $quoteLength = $this->getDepth($call[1][0]);
39 $this->quoteCalls[] = ['quote_open', [], $call[2]];
44 $this->quoteCalls[] = ['quote_close', [], $call[2]];
46 } elseif ($call[0] != 'quote_start') {
47 $this->quoteCalls[] = ['linebreak', [], $call[2]];
58 $this->quoteCalls[] = ['quote_close', [], $call[2]];
62 $this->quoteCalls[] = ['quote_close', [], $call[
[all...]
H A DTable.php31 foreach ($this->calls as $call) {
32 switch ($call[0]) {
34 $this->tableStart($call);
37 $this->tableRowClose($call);
38 $this->tableRowOpen(['tablerow_open', $call[1], $call[2]]);
42 $this->tableCell($call);
45 $this->tableRowClose($call);
46 $this->tableEnd($call);
49 $this->tableDefault($call);
59 tableStart($call) global() argument
66 tableEnd($call) global() argument
72 tableRowOpen($call) global() argument
84 tableRowClose($call) global() argument
116 tableCell($call) global() argument
142 tableDefault($call) global() argument
[all...]
/dokuwiki/inc/Remote/
H A DApi.php105 foreach ($methods as $method => $call) {
106 $this->pluginMethods["plugin.$pluginName.$method"] = $call;
116 * @param string $method name of the method to call.
118 * @return mixed result of method call, must be a primitive type.
121 public function call($method, $args = [])
158 * Check if the current user is allowed to call the given method
162 * @throws AccessDeniedException Thrown when the user is not allowed to call the method
178 throw new AccessDeniedException('server error. not authorized to call method', -32604);
90 public function call($method, $args = array()) global() function in dokuwiki\\Remote\\Api
H A DXmlRpcServer.php50 protected function call($methodname, $args)
53 $result = $this->remote->call($methodname, $args);
58 return new Error(-32603, "server error. not authorized to call method $methodname");
61 return new Error(-32604, "server error. forbidden to call the method $methodname");
45 public function call($methodname, $args) global() function in dokuwiki\\Remote\\XmlRpcServer
/dokuwiki/inc/parser/
H A Dhandler.php48 * Add a new call by passing it to the current CallWriter
51 * @param mixed $args arguments for this call
56 $call = [$handler, $args, $pos];
57 $this->callWriter->writeCall($call);
111 * Similar to addCall, but adds a plugin call
114 * @param mixed $args arguments for this call
121 $call = ['plugin', [$plugin, $args, $state, $match], $pos];
122 $this->callWriter->writeCall($call);
128 * Called from the parser. Calls finalise() on the call writer, closes open
155 * fetch the current call an
[all...]
/dokuwiki/lib/exe/
H A Dajax.php4 * DokuWiki AJAX call handler
19 // default header, ajax call may overwrite it later
22 //call the requested function
24 if ($INPUT->has('call')) {
25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
26 new Ajax($call);
21 $call = $INPUT->filter([\dokuwiki\Utf8\Clean::class, 'stripspecials'])->str('call'); global() variable
/dokuwiki/lib/plugins/acl/
H A Dscript.js30 {call: 'plugin_acl',
69 jQuery('#acl__detail form').serialize() + '&call=plugin_acl&ajax=info'
/dokuwiki/lib/plugins/extension/
H A Dscript.js66 call: 'plugin_extension',
107 call: 'plugin_extension',
/dokuwiki/lib/scripts/
H A Dbehaviour.js129 .change(function(e){ HTMLFormElement.prototype.submit.call(e.target.form); })
H A Ddelay.js11 * To get a timeout for non-global functions, just call
32 * To call a function with a delay, just create a new Delay(func, timeout) and
33 * call that object’s method “start”.
57 this.timer = timer.add(function () { _this.exec.call(_this); },
62 _params: Array.prototype.slice.call(arguments, 2)
68 this.func.call(this._data._this, this._data._params);
H A Dedit.js212 call: 'draftdel',
H A Dfileuploader.js210 : (Object.prototype.toString.call(nextObj) === '[object Function]')
221 } else if ((Object.prototype.toString.call(obj) === '[object Array]') && (typeof obj != 'undefined') ) {
480 // call parent constructor
H A Dhelpers.js25 * Bind variables to a function call creating a closure
41 static_args = Aps.call(arguments, 1);
49 static_args.concat(Aps.call(arguments, 0)));

12