xref: /plugin/struct/_test/mock/AccessTablePage.php (revision 308cc83fd5391df29d21d2bc1306c8da49fdb335)
1*308cc83fSAndreas Gohr<?php
2*308cc83fSAndreas Gohr
3*308cc83fSAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock;
4*308cc83fSAndreas Gohr
5*308cc83fSAndreas Gohrclass AccessTablePage extends \dokuwiki\plugin\struct\meta\AccessTablePage {
6*308cc83fSAndreas Gohr
7*308cc83fSAndreas Gohr    public function getDataFromDB() {
8*308cc83fSAndreas Gohr        return parent::getDataFromDB();
9*308cc83fSAndreas Gohr    }
10*308cc83fSAndreas Gohr
11*308cc83fSAndreas Gohr    public function buildGetDataSQL($idColumn = 'pid') {
12*308cc83fSAndreas Gohr        return parent::buildGetDataSQL($idColumn);
13*308cc83fSAndreas Gohr    }
14*308cc83fSAndreas Gohr}
15