Re: hook_form_alter() hooks all of Drupal forms

Posts: 5214
Joined: 08/07/2007
AdministratorHead Code Monkey - I eat bugs.

It won't have a noticeable impact. Just wrap all your code in an if statement checking against the form ID:

<?php
function example_form_alter($form_id, &$form) {
  if (
$form_id == 'the_form_id') {
   
// Code goes here. Smiling
 
}
}
?>

Multiple currencies for products By: Gordonjcp (28 replies) Tue, 09/25/2007 - 06:26