Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 20 of 20) sorted by relevance

/dokuwiki/_test/tests/Remote/Mock/
DTestPlugin1.php12 $methods = parent::getMethods(); // auto add all methods, then adjust
14 … $methods['method2ext'] = new ApiCall([$this, 'method2']); // add a method with a different name
15 $methods['publicCall']->setPublic(); // make this one public
16 return $methods;
/dokuwiki/inc/Remote/OpenApiDoc/
DDocBlockClass.php10 protected $methods = []; variable in dokuwiki\\Remote\\OpenApiDoc\\DocBlockClass
40 if ($this->methods) return $this->methods;
47 $this->methods[$method->getName()] = new DocBlockMethod($method);
50 return $this->methods;
DOpenAPIGenerator.php150 $methods = $this->api->getMethods();
153 foreach ($methods as $method => $call) {
/dokuwiki/inc/Remote/
DApi.php94 $methods = $plugin->getMethods();
105 foreach ($methods as $method => $call) {
129 $methods = $this->getMethods();
130 if (!isset($methods[$method])) {
133 $this->ensureAccessIsAllowed($methods[$method]);
137 return $methods[$method]($args);
DLegacyApiCore.php21 $methods = parent::getMethods();
24 $methods,
/dokuwiki/_test/tests/Remote/
DApiTest.php65 $methods = $this->remote->getPluginMethods();
66 $actual = array_keys($methods);
83 $methods = $this->remote->getPluginMethods();
108 $methods['plugin.testplugin2.commented']->getArgs()
116 $methods['plugin.testplugin2.commented']->getReturn()
119 $this->assertEquals(0, $methods['plugin.testplugin2.commented']->isPublic());
122 $methods['plugin.testplugin2.commented']->getSummary()
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
DClassServer.php38 public function registerObject($object, $methods, $prefix = null) argument
46 foreach ($methods as $method) {
DIntrospectionServer.php44 'Returns an array of available methods on this server'
/dokuwiki/vendor/aziraphale/email-address-validator/
DREADME.md11 - Opened up methods for checking the "local part" (the bit before the `@`) and the "domain part" (a…
12 to be public methods
51 with a couple of additional methods in case they're helpful:
/dokuwiki/lib/plugins/info/
Dsyntax.php177 $methods = $po->getMethods();
186 foreach ($methods as $method) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
DSSH2.php5194 * @param array $methods
5196 public function setPreferredAlgorithms(array $methods) argument
5200 if (isset($methods['kex']) && is_string($methods['kex'])) {
5201 $methods['kex'] = explode(',', $methods['kex']);
5204 if (isset($methods['hostkey']) && is_string($methods['hostkey'])) {
5205 $methods['hostkey'] = explode(',', $methods['hostkey']);
5209 if (isset($methods[$key])) {
5210 $a = &$methods[$key];
5223 $preferred = $methods;
5275 $m = $methods;
/dokuwiki/vendor/splitbrain/php-cli/
DREADME.md93 Simple colored log messages can be printed by you using the convinence methods ``success()`` (green…
159 Convenience methods for all log levels are available. Placeholder interpolation as described in PSR…
/dokuwiki/vendor/splitbrain/lesserphp/
DREADME.md34 compile methods.
DLICENSE351 "Installation Information" for a User Product means any methods,
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
DRijndael.php283 $methods = openssl_get_cipher_methods();
286 in_array('aes-' . $this->getKeyLength() . '-gcm', $methods) &&
/dokuwiki/vendor/simplepie/simplepie/idn/
DReadMe.txt19 The class provides two public methods, encode() and decode(), which do exactly
/dokuwiki/vendor/simplepie/simplepie/
DCHANGELOG.md109 - New methods `SimplePie::rename_attributes()` and `SimplePie_Sanitize::rename_attributes()` allow …
280 * Added backwards compatibility for removed `subscribe_*()` and `enable_xml_dump()` methods. [#348]…
281 * Re-added the deprecated `get/set_favicon()` methods for backwards compatibility.
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php2250 $methods = openssl_get_cipher_methods();
2251 if (in_array($this->cipher_name_openssl, $methods)) {
2258 if (in_array($this->cipher_name_openssl_ecb, $methods)) {
/dokuwiki/vendor/geshi/geshi/
DCHANGELOG571 - Removed some private methods which were only called at exactly one place (milian)
896 in set_*_styles methods (Stebastian Werner)
948 - Added two new methods: load_from_file and get_language_name_from_extension, that can
953 - Fixed bug where methods were not having the correct CSS generated for them
1012 - Added methods set_symbols_style() and set_symbols_highlighting(). These should be used
/dokuwiki/vendor/simplepie/simplepie/src/
DSimplePie.php682 * object's methods and properties will be available to you.