You are here

function domain_prefix_string in Domain Access 5

Same name and namespace in other branches
  1. 6.2 domain_prefix/domain_prefix.module \domain_prefix_string()

Uniform prefix string

Parameters

$domain_id: The domain_id taken from {domain}.

3 calls to domain_prefix_string()
domain_prefix_drop_records in domain_prefix/domain_prefix.module
Drop tables created by this module.
domain_prefix_form in domain_prefix/domain_prefix.module
The table prefixing page for a domain.
domain_prefix_form_submit in domain_prefix/domain_prefix.module
FormsAPI for domain_prefix_form.

File

domain_prefix/domain_prefix.module, line 774
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_string($domain_id) {
  return 'domain_' . $domain_id . '_';
}