You are here

function group_path_alias_types in Group 7

Implements hook_path_alias_types().

Here we return what the original path for a group is so Pathauto can delete them in one go.

File

./group.pathauto.inc, line 13
Hook implementations for the Pathauto module.

Code

function group_path_alias_types() {
  $alias_types['group/'] = t('Group');
  return $alias_types;
}