function hosting_package_block_visibility in Hosting 6.2
Same name and namespace in other branches
- 7.4 package/hosting_package.module \hosting_package_block_visibility()
- 7.3 package/hosting_package.module \hosting_package_block_visibility()
Control block visibility.
File
- package/
hosting_package.module, line 378
Code
function hosting_package_block_visibility() {
$node = menu_get_object();
if (!empty($node)) {
return $node->type == 'package' && $node->package_type != 'profile';
}
}