You are here

function hosting_platform_composer_git_node_insert in Aegir Deploy 7.3

Implements hook_node_insert().

File

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

Code

function hosting_platform_composer_git_node_insert($node) {
  if ($node->type == 'platform') {
    $platform = new HostingPlatformComposerGitNode($node);
    $platform
      ->nodeInsert();
  }
}