You are here

function word_link_path_delete in Word Link 7.2

Implements hook_path_delete().

File

./word_link.module, line 702

Code

function word_link_path_delete($path) {
  if ($path && isset($path['alias'])) {
    $words = word_link_load_by_url($path['alias']);
    $msg = t('Path alias @url', array(
      '@url' => $path['alias'],
    ));
    word_link_disable_words($words, $msg);
  }
}