Beispiel #1
0
 private function pmTable()
 {
     $uid = GWF_Session::getUserID();
     $fid = $this->folder->getID();
     $conditions = "(pm_from={$uid} AND pm_from_folder={$fid}) OR (pm_to={$uid} AND pm_to_folder={$fid})";
     $sortURL = GWF_WEB_ROOT . 'pm/folder/' . $fid . '/' . $this->folder->urlencodeSEO('pmf_name') . '/by/%BY%/%DIR%/page-1';
     return GWF_Table::displayGDO2($this->module, GDO::table('GWF_PM'), GWF_Session::getUser(), $sortURL, $conditions, $this->module->cfgPMPerPage());
 }