Home
last modified time | relevance | path

Searched +full:remote -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 45) sorted by path

12

/dokuwiki/conf/
H A Ddokuwiki.php68 $conf['remote'] = 0; //Enable/disable remote interfaces
69 $conf['remoteuser'] = '!!not set!!'; //user/groups that have access to remote interface (comma separated). leave empty to allow all users
70 $conf['remotecors'] = ''; //enable Cross-Origin Resource Sharing (CORS) for the remote interfaces. Asterisk (*) to allow all origins. leave empty to deny.
/dokuwiki/data/
H A Ddeleted.files98 inc/remote.php
/dokuwiki/inc/Extension/
H A DPluginController.php16 public const PLUGIN_TYPES = ['auth', 'admin', 'syntax', 'action', 'renderer', 'helper', 'remote', 'cli'];
H A DRemotePlugin.php5 use dokuwiki\Remote\Api;
6 use dokuwiki\Remote\ApiCall;
11 * Remote Plugin prototype
13 * Add functionality to the remote API in a plugin
28 * Get all available methods with remote access.
30 * By default it exports all public methods of a remote plugin. Methods beginning
/dokuwiki/inc/Remote/
H A DAccessDeniedException.php3 namespace dokuwiki\Remote;
H A DApi.php3 namespace dokuwiki\Remote;
7 use dokuwiki\test\Remote\Mock\ApiCore as MockApiCore;
10 * This class provides information about remote access to the wiki.
13 * There are two types of remote methods. The first is the core methods.
15 * The other is plugin methods. These are provided by remote plugins.
43 /** @var ApiCall[] remote methods provided by dokuwiki plugins */
47 * Get all available methods with remote access.
76 * Collects all the methods of the enabled Remote Plugins
84 $plugins = plugin_list('remote');
87 $plugin = plugin_load('remote',
[all...]
H A DApiCore.php3 namespace dokuwiki\Remote;
9 use dokuwiki\Remote\Response\Link;
10 use dokuwiki\Remote\Response\Media;
11 use dokuwiki\Remote\Response\MediaChange;
12 use dokuwiki\Remote\Response\Page;
13 use dokuwiki\Remote\Response\PageChange;
14 use dokuwiki\Remote\Response\PageHit;
15 use dokuwiki\Remote\Response\User;
19 * Provides the core methods for the remote API.
H A DRemoteException.php3 namespace dokuwiki\Remote;
H A DXmlRpcServer.php3 namespace dokuwiki\Remote;
16 protected $remote;
23 $this->remote = new Api();
32 if (!$conf['remote']) {
53 $result = $this->remote->call($methodname, $args);
15 protected $remote; global() variable in dokuwiki\\Remote\\XmlRpcServer
/dokuwiki/inc/Remote/IXR/
H A DClient.php3 namespace dokuwiki\Remote\IXR;
/dokuwiki/inc/
H A Dchangelog.php74 $remote = ($flagExternalEdit) ? '127.0.0.1' : clientIP(true);
82 'ip' => $remote,
132 $remote = ($flagExternalEdit) ? '127.0.0.1' : clientIP(true);
139 'ip' => $remote,
H A Ddeprecated.php20 class RemoteAccessDeniedException extends \dokuwiki\Remote\AccessDeniedException
25 dbg_deprecated(\dokuwiki\Remote\AccessDeniedException::class);
35 class RemoteException extends \dokuwiki\Remote\RemoteException
40 dbg_deprecated(\dokuwiki\Remote\RemoteException::class);
575 * @deprecated since 2021-11-11 use \dokuwiki\Remote\IXR\Client instead!
577 class IXR_Client extends \dokuwiki\Remote\IXR\Client
585 DebugHelper::dbgDeprecatedFunction(dokuwiki\Remote\IXR\Client::class);
H A Dmedia.php1871 * Download a remote file and return local filename
/dokuwiki/inc/parser/
H A Dhandler.php1138 // Check whether this is a local or remote image or interwiki
H A Dmetadata.php528 * @param string $wikiName indentifier (shortcut) for the remote wiki
H A Drenderer.php624 * @param string $wikiName indentifier (shortcut) for the remote wiki
H A Dxhtml.php1027 * @param string $wikiName indentifier (shortcut) for the remote wiki
/dokuwiki/lib/exe/
H A Dxmlrpc.php7 use dokuwiki\Remote\XmlRpcServer;
/dokuwiki/lib/plugins/acl/
H A Dremote.php4 use dokuwiki\Remote\AccessDeniedException;
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php178 $meta['remote'] = ['onoff', '_caution' => 'security'];
/dokuwiki/lib/plugins/extension/
H A Dadmin.php53 // initialize the remote repository
H A Dcli.php75 $this->warning('Extension Repository API is not accessible, no remote info available!');
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php68 * Set the name of the extension this instance shall represents, triggers loading the local and remote data
71 * @return bool If some (local or remote) data was found
677 * Install an extension from a remote URL
H A Drepository.php105 * Get the remote data of an individual plugin or template
/dokuwiki/lib/plugins/info/
H A Dsyntax.php101 $this->renderPlugins('remote', $renderer);

12