You are here

function attachment_links_node_insert in Attachment Links 7

Implements hook_node_insert().

File

./attachment_links.module, line 62

Code

function attachment_links_node_insert($node) {
  if (variable_get('attachment_links_create_alias_' . $node->type, FALSE)) {
    path_delete(array(
      'source' => 'node/' . $node->nid . '/attachment',
    ));
    attachment_links_save_alias($node);
  }
}