You are here

function node_path_alias_types in Pathauto 7

Implements hook_path_alias_types() on behalf of node module.

File

./pathauto.module, line 648
Main file for the Pathauto module, which automatically generates aliases for content.

Code

function node_path_alias_types() {
  return array(
    'node/' => t('Content'),
  );
}