API:getFullTableName

From MODx Wiki

Jump to: navigation, search

Overview

Returns the full table name based on db settings.

Source Code

File: manager/includes/document.parser.class.inc.php
Line: 1904
  1. function getFullTableName($tbl) {
  2. return $this->db->config['dbase'] . ".`" . $this->db->config['table_prefix'] . $tbl . "`";
  3. }
Personal tools