X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiPatrol.php;h=779c41884b79af4c4bfd559ce814742f9d8f0e82;hb=4e90d55fdc9d31d93e24cf05687eb7d180806f44;hp=8b66781a4d47f7c2109874e2d73b0422d9b3ab25;hpb=2541375682949eb2c0886fd5e8ff01c7c7bd7955;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiPatrol.php b/includes/api/ApiPatrol.php index 8b66781a4d..779c41884b 100644 --- a/includes/api/ApiPatrol.php +++ b/includes/api/ApiPatrol.php @@ -38,7 +38,7 @@ class ApiPatrol extends ApiBase { $this->requireOnlyOneParameter( $params, 'rcid', 'revid' ); if ( isset( $params['rcid'] ) ) { - $rc = RecentChange::newFromID( $params['rcid'] ); + $rc = RecentChange::newFromId( $params['rcid'] ); if ( !$rc ) { $this->dieUsageMsg( array( 'nosuchrcid', $params['rcid'] ) ); } @@ -86,25 +86,16 @@ class ApiPatrol extends ApiBase { ); } - public function getParamDescription() { - return array( - 'rcid' => 'Recentchanges ID to patrol', - 'revid' => 'Revision ID to patrol', - ); - } - - public function getDescription() { - return 'Patrol a page or revision.'; - } - public function needsToken() { return 'patrol'; } - public function getExamples() { + protected function getExamplesMessages() { return array( - 'api.php?action=patrol&token=123ABC&rcid=230672766', - 'api.php?action=patrol&token=123ABC&revid=230672766' + 'action=patrol&token=123ABC&rcid=230672766' + => 'apihelp-patrol-example-rcid', + 'action=patrol&token=123ABC&revid=230672766' + => 'apihelp-patrol-example-revid', ); }