function domain_prefix_disallow in Domain Access 6.2
Same name and namespace in other branches
- 5 domain_prefix/domain_prefix.module \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.admin.inc - FormsAPI for generating the configuration form
- domain_prefix_form in domain_prefix/
domain_prefix.admin.inc - The table prefixing page for a domain.
- domain_prefix_get_tables in domain_prefix/
domain_prefix.admin.inc - Get the tables with the active prefix
File
- domain_prefix/
domain_prefix.admin.inc, line 554 - Admin page functions for selective table prefixing for use with Domain Access.
Code
function domain_prefix_disallow() {
return array(
'domain',
'domain_access',
'domain_alias',
'domain_conf',
'domain_editor',
'domain_prefix',
'domain_source',
'domain_theme',
'domain_user',
);
}