You are here

function coder_upgrade_upgrade_call_form_clean_id_alter in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_upgrade/conversions/call.inc \coder_upgrade_upgrade_call_form_clean_id_alter()

Implements hook_upgrade_call_form_clean_id_alter().

File

coder_upgrade/conversions/call.inc, line 1749
Provides conversion routines applied to function calls.

Code

function coder_upgrade_upgrade_call_form_clean_id_alter(&$node, &$reader) {

  // Get the function call object.
  $item =& $node->data;

  // http://drupal.org/node/224333#form_clean_id
  $name =& $item->name;
  $name['value'] = 'drupal_clean_css_identifier';
}