You are here

function search_restrict_form_alter in Search Restrict 5

Same name and namespace in other branches
  1. 6.2 search_restrict.module \search_restrict_form_alter()
  2. 6 search_restrict.module \search_restrict_form_alter()
  3. 7 search_restrict.module \search_restrict_form_alter()

Implementation of hook_form_alter().

File

./search_restrict.module, line 13

Code

function search_restrict_form_alter($form_id, &$form) {
  switch ($form_id) {
    case 'node_type_form':
      search_restrict_content_type_form($form);
      break;
  }
}