Lines Matching full:core

20  * 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'),
47 'core.listPages' => new ApiCall($this->listPages(...), 'pages'),
48 'core.searchPages' => new ApiCall($this->searchPages(...), 'pages'),
49 'core.getRecentPageChanges' => new ApiCall($this->getRecentPageChanges(...), 'pages'),
51 'core.getPage' => (new ApiCall($this->getPage(...), 'pages')),
52 'core.getPageHTML' => (new ApiCall($this->getPageHTML(...), 'pages')),
53 'core.getPageInfo' => (new ApiCall($this->getPageInfo(...), 'pages')),
54 'core.getPageHistory' => new ApiCall($this->getPageHistory(...), 'pages'),
55 'core.getPageLinks' => new ApiCall($this->getPageLinks(...), 'pages'),
56 'core.getPageBackLinks' => new ApiCall($this->getPageBackLinks(...), 'pages'),
58 'core.lockPages' => new ApiCall($this->lockPages(...), 'pages'),
59 'core.unlockPages' => new ApiCall($this->unlockPages(...), 'pages'),
60 'core.savePage' => new ApiCall($this->savePage(...), 'pages'),
61 'core.appendPage' => new ApiCall($this->appendPage(...), 'pages'),
63 'core.listMedia' => new ApiCall($this->listMedia(...), 'media'),
64 'core.getRecentMediaChanges' => new ApiCall($this->getRecentMediaChanges(...), 'media'),
66 'core.getMedia' => new ApiCall($this->getMedia(...), 'media'),
67 'core.getMediaInfo' => new ApiCall($this->getMediaInfo(...), 'media'),
68 'core.getMediaUsage' => new ApiCall($this->getMediaUsage(...), 'media'),
69 'core.getMediaHistory' => new ApiCall($this->getMediaHistory(...), 'media'),
71 'core.saveMedia' => new ApiCall($this->saveMedia(...), 'media'),
72 'core.deleteMedia' => new ApiCall($this->deleteMedia(...), 'media'),