neue Version für Mediawiki ab Version 1.32

This commit is contained in:
root
2019-05-25 13:18:39 +02:00
parent a0f2accc98
commit 90479e2677
130 changed files with 2377 additions and 1608 deletions

View File

@@ -0,0 +1,44 @@
<?php
class CommentListAPI extends ApiBase {
public function execute() {
$commentsPage = new CommentsPage( $this->getMain()->getVal( 'pageID' ), RequestContext::getMain() );
$commentsPage->orderBy = $this->getMain()->getVal( 'order' );
$commentsPage->currentPagerPage = $this->getMain()->getVal( 'pagerPage' );
$output = '';
if ( $this->getMain()->getVal( 'showForm' ) ) {
$output .= $commentsPage->displayOrderForm();
}
$output .= $commentsPage->display();
if ( $this->getMain()->getVal( 'showForm' ) ) {
$output .= $commentsPage->displayForm();
}
$result = $this->getResult();
$result->addValue( $this->getModuleName(), 'html', $output );
return true;
}
public function getAllowedParams() {
return [
'pageID' => [
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'integer'
],
'order' => [
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'boolean'
],
'pagerPage' => [
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'integer'
],
'showForm' => [
ApiBase::PARAM_REQUIRED => false,
ApiBase::PARAM_TYPE => 'integer'
]
];
}
}