示例#1
0
 function formatResult($skin, $result)
 {
     if (empty($this->show)) {
         $this->data[$result->title] = $result->value;
         return false;
     } else {
         return parent::formatResult($skin, $result);
     }
 }
示例#2
0
function wfSpecialAncientpages()
{
    list($limit, $offset) = wfCheckLimits();
    $app = new AncientPagesPage();
    $app->doQuery($offset, $limit);
}