Lines Matching full:core
23 * Provides the core methods for the remote API.
32 * Returns details about the core methods
39 'core.getAPIVersion' => (new ApiCall($this->getAPIVersion(...), 'info'))->setPublic(),
41 'core.getWikiVersion' => new ApiCall('getVersion', 'info'),
42 'core.getWikiTitle' => (new ApiCall($this->getWikiTitle(...), 'info'))->setPublic(),
43 'core.getWikiTime' => (new ApiCall($this->getWikiTime(...), 'info')),
45 'core.login' => (new ApiCall($this->login(...), 'user'))->setPublic(),
46 'core.logoff' => new ApiCall($this->logoff(...), 'user'),
47 'core.whoAmI' => (new ApiCall($this->whoAmI(...), 'user')),
48 'core.aclCheck' => new ApiCall($this->aclCheck(...), 'user'),
50 'core.listPages' => new ApiCall($this->listPages(...), 'pages'),
51 'core.searchPages' => new ApiCall($this->searchPages(...), 'pages'),
52 'core.getRecentPageChanges' => new ApiCall($this->getRecentPageChanges(...), 'pages'),
54 'core.getPage' => (new ApiCall($this->getPage(...), 'pages')),
55 'core.getPageHTML' => (new ApiCall($this->getPageHTML(...), 'pages')),
56 'core.getPageInfo' => (new ApiCall($this->getPageInfo(...), 'pages')),
57 'core.getPageHistory' => new ApiCall($this->getPageHistory(...), 'pages'),
58 'core.getPageLinks' => new ApiCall($this->getPageLinks(...), 'pages'),
59 'core.getPageBackLinks' => new ApiCall($this->getPageBackLinks(...), 'pages'),
61 'core.lockPages' => new ApiCall($this->lockPages(...), 'pages'),
62 'core.unlockPages' => new ApiCall($this->unlockPages(...), 'pages'),
63 'core.savePage' => new ApiCall($this->savePage(...), 'pages'),
64 'core.appendPage' => new ApiCall($this->appendPage(...), 'pages'),
66 'core.listMedia' => new ApiCall($this->listMedia(...), 'media'),
67 'core.getRecentMediaChanges' => new ApiCall($this->getRecentMediaChanges(...), 'media'),
69 'core.getMedia' => new ApiCall($this->getMedia(...), 'media'),
70 'core.getMediaInfo' => new ApiCall($this->getMediaInfo(...), 'media'),
71 'core.getMediaUsage' => new ApiCall($this->getMediaUsage(...), 'media'),
72 'core.getMediaHistory' => new ApiCall($this->getMediaHistory(...), 'media'),
74 'core.saveMedia' => new ApiCall($this->saveMedia(...), 'media'),
75 'core.deleteMedia' => new ApiCall($this->deleteMedia(...), 'media'),