first commit

This commit is contained in:
root
2017-09-27 17:53:26 +02:00
commit a01e7fe597
139 changed files with 7890 additions and 0 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 array(
'pageID' => array(
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'integer'
),
'order' => array(
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'boolean'
),
'pagerPage' => array(
ApiBase::PARAM_REQUIRED => true,
ApiBase::PARAM_TYPE => 'integer'
),
'showForm' => array(
ApiBase::PARAM_REQUIRED => false,
ApiBase::PARAM_TYPE => 'integer'
)
);
}
}