You are here

function domain_prefix_disallow in Domain Access 5

Same name and namespace in other branches
  1. 6.2 domain_prefix/domain_prefix.admin.inc \domain_prefix_disallow()

Names of tables explicitly not allowed to be copied

3 calls to domain_prefix_disallow()
domain_prefix_configure_form in domain_prefix/domain_prefix.module
FormsAPI for generating the configuration form
domain_prefix_form in domain_prefix/domain_prefix.module
The table prefixing page for a domain.
domain_prefix_get_tables in domain_prefix/domain_prefix.module
Get the tables with the active prefix

File

domain_prefix/domain_prefix.module, line 716
Interface for selective table prefixing for use with Domain Access. For this module to work correctly, you will need to follow the INSTALL.txt instructions for editing your settings.php file.

Code

function domain_prefix_disallow() {
  return array(
    'domain',
    'domain_conf',
    'domain_prefix',
    'domain_theme',
    'domain_user',
  );
}