You are here

function word_link_delete_action in Word Link 7.2

Action function.

Delete words.

File

./word_link.actions.inc, line 31
Actions for the Word Link module.

Code

function word_link_delete_action($word, $context) {
  word_link_delete($word->id);
  if ($context['progress']['current'] >= $context['progress']['total']) {
    word_link_clear_filter_cache();
  }
}