Home
last modified time | relevance | path

Searched full:core (Results 1 – 25 of 94) sorted by relevance

1234

/dokuwiki/_test/tests/Remote/
H A DApiCoreTest.php75 // core.getAPIVersion
80 $this->remote->call('core.getAPIVersion')
84 // core.getWikiVersion
89 $this->remote->call('core.getWikiVersion')
93 // core.getWikiTitle
99 $this->remote->call('core.getWikiTitle')
103 // core.getWikiTime
108 $this->remote->call('core.getWikiTime'),
117 // core.login
120 $this->markTestIncomplete('Missing test for core.login API Call');
[all …]
H A DApiCoreAclCheckTest.php80 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params));
90 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params));
97 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params));
104 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params));
111 $this->assertEquals(AUTH_CREATE, $this->remote->call('core.aclCheck', $params));
118 $this->assertEquals(AUTH_UPLOAD, $this->remote->call('core.aclCheck', $params));
125 $this->assertEquals(AUTH_UPLOAD, $this->remote->call('core.aclCheck', $params));
132 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params));
139 $this->assertEquals(AUTH_EDIT, $this->remote->call('core.aclCheck', $params));
146 $this->assertEquals(AUTH_ADMIN, $this->remote->call('core.aclCheck', $params));
/dokuwiki/inc/Remote/
H A DLegacyApiCore.php77 * @deprecated use core.getWikiVersion instead
85 * @deprecated use core.getWikiTime instead
94 * @deprecated use core.getPage instead
109 * @deprecated use core.getPage instead
124 * @deprecated use core.getMedia instead
132 * @deprecated use core.getMediaInfo instead
144 * @deprecated use core.getPageHTML instead
159 * @deprecated use core.getPageHTML instead
174 * @deprecated use core.listPages instead
193 * @deprecated use core.listPages instead
[all …]
H A DApiCore.php20 * Provides the core methods for the remote API.
29 * Returns details about the core methods
36 'core.getAPIVersion' => (new ApiCall($this->getAPIVersion(...), 'info'))->setPublic(),
38 'core.getWikiVersion' => new ApiCall('getVersion', 'info'),
39 'core.getWikiTitle' => (new ApiCall($this->getWikiTitle(...), 'info'))->setPublic(),
40 'core.getWikiTime' => (new ApiCall($this->getWikiTime(...), 'info')),
42 'core.login' => (new ApiCall($this->login(...), 'user'))->setPublic(),
43 'core.logoff' => new ApiCall($this->logoff(...), 'user'),
44 'core.whoAmI' => (new ApiCall($this->whoAmI(...), 'user')),
45 'core.aclCheck' => new ApiCall($this->aclCheck(...), 'user'),
[all …]
H A DApi.php13 * There are two types of remote methods. The first is the core methods.
32 * core methods begin by a 'dokuwiki' or 'wiki' followed by a . and the method name itself.
40 /** @var ApiCall[] core methods provided by dokuwiki */
57 * Collects all the core methods
61 * @return ApiCall[] all core methods.
/dokuwiki/lib/plugins/config/_test/
H A DDocumentationTest.php6 use dokuwiki\plugin\config\core\Configuration;
7 use dokuwiki\plugin\config\core\Setting\SettingFieldset;
8 use dokuwiki\plugin\config\core\Setting\SettingHidden;
H A DWriterTest.php4 use dokuwiki\plugin\config\core\Setting\SettingString;
5 use dokuwiki\plugin\config\core\Writer;
H A DLoaderExtraDefaultsTest.php5 use dokuwiki\plugin\config\core\ConfigParser;
6 use dokuwiki\plugin\config\core\Loader;
H A DLoaderTest.php5 use dokuwiki\plugin\config\core\ConfigParser;
6 use dokuwiki\plugin\config\core\Loader;
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php3 namespace dokuwiki\plugin\config\core;
5 use dokuwiki\plugin\config\core\Setting\Setting;
6 use dokuwiki\plugin\config\core\Setting\SettingNoClass;
7 use dokuwiki\plugin\config\core\Setting\SettingNoDefault;
8 use dokuwiki\plugin\config\core\Setting\SettingNoKnownClass;
9 use dokuwiki\plugin\config\core\Setting\SettingUndefined;
218 $modern = '\\dokuwiki\\plugin\\config\\core\\Setting\\Setting' . $modern;
228 return '\\dokuwiki\\plugin\\config\\core\\Setting\\Setting';
H A DWriter.php3 namespace dokuwiki\plugin\config\core;
5 use dokuwiki\plugin\config\core\Setting\Setting;
85 * @todo this should probably be moved to core
/dokuwiki/_test/
H A Dbootstrap.php8 require_once DOKU_UNITTEST.'core/phpQuery-onefile.php'; // deprecated
9 require_once DOKU_UNITTEST.'core/DokuWikiTest.php';
10 require_once DOKU_UNITTEST.'core/TestResponse.php';
11 require_once DOKU_UNITTEST.'core/TestRequest.php';
12 require_once DOKU_UNITTEST.'core/TestUtils.php';
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingUndefined.php3 namespace dokuwiki\plugin\config\core\Setting;
5 use dokuwiki\plugin\config\core\Configuration;
H A DSettingHidden.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingNoKnownClass.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingNoClass.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingFieldset.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingNoDefault.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingSepchar.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingSavedir.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingCompression.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingNumericopt.php3 namespace dokuwiki\plugin\config\core\Setting;
H A DSettingLicense.php3 namespace dokuwiki\plugin\config\core\Setting;
/dokuwiki/_test/tests/Remote/Mock/
H A DJsonRpcServer.php12 $this->remote->getCoreMethods(new ApiCore()); // use the mock API core
H A DXmlRpcServer.php13 $this->remote->getCoreMethods(new ApiCore()); // use the mock API core

1234