You are here

function domain_domainignore in Domain Access 7.2

Same name and namespace in other branches
  1. 6.2 domain.module \domain_domainignore()

Implements hook_domainignore().

File

./domain.module, line 2804
Core module functions for the Domain Access suite.

Code

function domain_domainignore() {

  // We cannot interfere with update processes.
  return array(
    'update_script_selection_form',
    'authorize_filetransfer_form',
  );
}