You are here

function joomla_node_delete in Joomla to Drupal 7.2

Implements hook_node_delete().

File

./joomla.module, line 55
The joomla module used for migrate Joomla to Drupal.

Code

function joomla_node_delete($node) {
  db_delete('joomla_content')
    ->condition('nid', $node->nid)
    ->execute();
}