You are here

function hosting_platform_composer_git_node_view in Aegir Deploy 7.3

Implements hook_node_view().

File

modules/platform_composer_git/hosting_platform_composer_git.module, line 35
Drupal hooks for the hosting_platform_composer_git module.

Code

function hosting_platform_composer_git_node_view($node, $view_mode, $langcode) {
  if ($node->type == 'platform') {
    $platform = new HostingPlatformComposerGitNode($node);
    $platform
      ->nodeView();
  }
}