function hosting_deploy_node_view in Aegir Deploy 7.3
Implements hook_node_view().
File
- ./
hosting_deploy.module, line 32 - Drupal hooks for the hosting_deploy module.
Code
function hosting_deploy_node_view($node, $view_mode, $langcode) {
if ($node->type == 'platform') {
$platform = new HostingDeployNode($node);
$platform
->nodeView();
}
}