function coder_upgrade_upgrade_call_taxonomy_save_vocabulary_alter in Coder 7
Same name and namespace in other branches
- 7.2 coder_upgrade/conversions/call.inc \coder_upgrade_upgrade_call_taxonomy_save_vocabulary_alter()
Implements hook_upgrade_call_taxonomy_save_vocabulary_alter().
File
- coder_upgrade/
conversions/ call.inc, line 2428 - Provides conversion routines applied to function calls.
Code
function coder_upgrade_upgrade_call_taxonomy_save_vocabulary_alter(&$node, &$reader) {
// DONE
// Create helper objects.
$editor = PGPEditor::getInstance();
// Get the function call object.
$item =& $node->data;
// Process function call.
$name =& $item->name;
$name['value'] = 'taxonomy_vocabulary_save';
$temp = $item
->printParameters();
$editor
->setParameters($item, array(
'$vocabulary /* TODO Vocabulary object replaces array ' . $temp . ' */)',
));
}