1308cc83fSAndreas Gohr<?php 2308cc83fSAndreas Gohr 3308cc83fSAndreas Gohrnamespace dokuwiki\plugin\struct\test\mock; 4308cc83fSAndreas Gohr 5*0549dcc5SAndreas Gohrclass AccessTablePage extends \dokuwiki\plugin\struct\meta\AccessTablePage 6*0549dcc5SAndreas Gohr{ 7308cc83fSAndreas Gohr 8*0549dcc5SAndreas Gohr public function getDataFromDB() 9*0549dcc5SAndreas Gohr { 10308cc83fSAndreas Gohr return parent::getDataFromDB(); 11308cc83fSAndreas Gohr } 12308cc83fSAndreas Gohr 13*0549dcc5SAndreas Gohr public function buildGetDataSQL($idColumn = 'pid') 14*0549dcc5SAndreas Gohr { 15308cc83fSAndreas Gohr return parent::buildGetDataSQL($idColumn); 16308cc83fSAndreas Gohr } 17308cc83fSAndreas Gohr} 18