You are here

function hosting_platform_composer_node_insert in Aegir Deploy 7.3

Implements hook_node_insert().

File

modules/platform_composer/hosting_platform_composer.module, line 17
Drupal hooks for the hosting_platform_composer module.

Code

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