示例#1
0
 function closeShowCategory()
 {
     global $wgOut, $wgRequest;
     $from = $wgRequest->getVal('from');
     $until = $wgRequest->getVal('until');
     $viewer = new CategoryViewer($this->mTitle, $from, $until);
     $wgOut->addHTML($viewer->getHTML());
 }
 function getHTML()
 {
     $s = '';
     return $s . parent::getHTML();
 }