setHeaders(); $out = $this->getOutput(); $out->setPageTitle( $this->msg( 'properties' )->text() ); $page = new PropertiesQueryPage( $this->getStore(), $this->getSettings() ); $page->setContext( $this->getContext() ); list( $limit, $offset ) = $this->getLimitOffset(); $page->doQuery( $offset, $limit, $this->getRequest()->getVal( 'property' ) ); // Ensure locally collected output data is pushed to the output! SMWOutputs::commitToOutputPage( $out ); } private function getLimitOffset() { return $this->getRequest()->getLimitOffset(); } protected function getGroupName() { return 'pages'; } }