You are here

function domain_prefix_table_exists in Domain Access 6.2

Same name and namespace in other branches
  1. 5 domain_prefix/domain_prefix.module \domain_prefix_table_exists()

Does a table exist -- we use this to bypass Drupal's default table prefixing check.

Parameters

$prefix: The table prefix used with this domain. Optional.

$table: The name of the table being acted upon.

4 calls to domain_prefix_table_exists()
domain_prefix_domainpath in domain_prefix/domain_prefix.path.inc
Implement hook_domainpath().
domain_prefix_drop_records in domain_prefix/domain_prefix.admin.inc
Drop tables created by this module.
domain_prefix_form in domain_prefix/domain_prefix.admin.inc
The table prefixing page for a domain.
domain_prefix_form_submit in domain_prefix/domain_prefix.admin.inc
FormsAPI for domain_prefix_form.

File

domain_prefix/domain_prefix.module, line 181
Interface for selective table prefixing for use with Domain Access.

Code

function domain_prefix_table_exists($prefix, $table) {
  return db_table_exists(db_escape_table($prefix . $table));
}