function _bc_copy_taxonomy_load in Bundle Copy 7.2
Same name and namespace in other branches
- 7 bundle_copy.module \_bc_copy_taxonomy_load()
Helper function to load the taxonomy, but remove the vid on the object.
Parameters
$name: The name of the bundle.
1 string reference to '_bc_copy_taxonomy_load'
- bundle_copy_bundle_copy_info in ./
bundle_copy.module - Implements hook_bundle_copy_info().
File
- ./
bundle_copy.module, line 615 - Bundle copy.
Code
function _bc_copy_taxonomy_load($name) {
$bundle = taxonomy_vocabulary_machine_name_load($name);
return $bundle;
}