You are here

function path_redirect_path_redirect_operations in Path redirect 6

Implements hook_path_redirect_operations().

File

./path_redirect.module, line 168

Code

function path_redirect_path_redirect_operations() {
  $operations = array(
    'delete' => array(
      'action' => t('Delete'),
      'action_past' => t('Deleted'),
      'callback' => 'path_redirect_delete_multiple',
      'confirm' => TRUE,
    ),
  );
  return $operations;
}