You are here

function hosting_site_profile_block_visibility in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 site/hosting_site.module \hosting_site_profile_block_visibility()
  2. 7.3 site/hosting_site.module \hosting_site_profile_block_visibility()

Control block visibility.

File

site/hosting_site.module, line 784
Contains hook implementations for Hosting site module.

Code

function hosting_site_profile_block_visibility() {
  $node = menu_get_object();
  $menu_item = menu_get_item();
  if (!empty($node) && $menu_item['number_parts'] == 2) {
    return $node->type == 'package' && $node->package_type == 'profile';
  }
  return FALSE;
}