From MODx Wiki
Overview
Returns the full table name based on db settings.
Source Code
| File: | manager/includes/document.parser.class.inc.php
|
| Line: | 1904
|
function getFullTableName($tbl) {
return $this->db->config['dbase'] . ".`" . $this->db->config['table_prefix'] . $tbl . "`";
}