function bundle_copy_get_info in Bundle Copy 7.2
Same name and namespace in other branches
- 7 bundle_copy.module \bundle_copy_get_info()
Api function to get the bundle copy info.
5 calls to bundle_copy_get_info()
- bundle_copy_clone_submit in ./
bundle_copy.module - Submit callback: Clone data.
- bundle_copy_export in ./
bundle_copy.module - Menu callback: present the export page.
- bundle_copy_import_process in ./
bundle_copy.module - bundle_copy_menu in ./
bundle_copy.module - Implements hook_menu().
- _bundle_copy_export_data in ./
bundle_copy.module - Creates export data.
File
- ./
bundle_copy.module, line 11 - Bundle copy.
Code
function bundle_copy_get_info() {
static $info = FALSE;
if (!$info) {
return module_invoke_all('bundle_copy_info');
}
return $info;
}