You are here

API.txt in Pathauto 6

Same filename and directory in other branches
  1. 5.2 API.txt
  2. 5 API.txt
  3. 6.2 API.txt
This document explains how to provide "Pathauto integration" in a
module. You need this if you would like to provide additional tokens
or if your module has paths and you wish to have them automatically
aliased.  The simplest integration is just to provide tokens so we
cover that first.  More advanced integration requires an
implementation of hook_pathauto to provide a settings form.

It may be helpful to review some examples of integration from the
pathauto_node.inc, pathauto_taxonomy.inc, and pathauto_user.inc files.


==================
1 - Providing additional tokens
==================

If all you want is to enable tokens for your module you will simply
need to implement two functions:

  hook_token_values
  hook_token_list

See the token.module and it's API.txt for more information about this
process.

If the token is intended to generate a path expected to contain slashes,
the token name must end in 'path', 'path-raw' or 'alias'. This indicates to
Pathauto that the slashes should not be removed from the replacement value.

When an object is created (whether it is a node or a user or a
taxonomy term) the data that Pathauto hands to the token_values in the
$object is in a specific format. This is the format that most people
write code to handle. However, during edits and bulk updates the data
may be in a totally different format. So, if you are writing a
hook_token_values implementation to add special tokens, be sure to
test creation, edit, and bulk update cases to make sure your code will
handle it.

==================
2 - Settings hook - To create aliases for your module
==================
You must implement hook_pathauto($op), where $op is always (at this
time) 'settings'. Return an object (NOT an array) containing the
following members, which will be used by pathauto to build a group
of settings for your module and define the variables for saving your
settings:

module - The name of your module (e.g., 'node')
groupheader - The translated label for the settings group (e.g.,
  t('Node path settings')
patterndescr - The translated label for the default pattern (e.g.,
  t('Default path pattern (applies to all node types with blank patterns below)')
patterndefault - A translated default pattern (e.g., t('[cat]/[title].html'))
placeholders - An array whose keys consist of the translated placeholders
  which will appear in patterns (e.g., t('[title]')) and values are
  the translated description of the placeholders (e.g.,
  t('The title of the node, with spaces and punctuation.')
patternitems - For modules which need to express multiple patterns
  (for example, the node module supports a separate pattern for each
  node type), an array whose keys consist of identifiers for each
  pattern (e.g., the node type name) and values consist of the
  translated label for the pattern
supportsfeeds - Modules which support RSS feeds should set this to the
  string that's appended to a path for its feed (usually 'feed') , so
  when administrators enable "Create feed aliases" an alias for this
  content type's feed will be generated in addition to the base alias.
bulkname - For modules which support a bulk update operation, the
  translated label for the action (e.g., t('Bulk update node paths'))
bulkdescr - For modules which support a bulk update operation, a
  translated, more thorough description of what the operation will do
  (e.g., t('Generate aliases for all existing nodes which do not already have aliases.'))


==================
2 - $alias = pathauto_create_alias($module, $op, $placeholders, $src, $type=NULL)
==================

At the appropriate time (usually when a new item is being created for
which a generated alias is desired), call pathauto_create_alias() to
generate and create the alias.  See the user, taxonomy, and nodeapi hook
implementations in pathauto.module for examples.

$module - The name of your module (e.g., 'node')
$op - Operation being performed on the item ('insert', 'update', or
  'bulkupdate')
$placeholders - An array whose keys consist of the translated placeholders
  which appear in patterns and values are the "clean" values to be
  substituted into the pattern. Call pathauto_cleanstring() on any
  values which you do not know to be purely alphanumeric, to substitute
  any non-alphanumerics with the user's designated separator. Note that
  if the pattern has multiple slash-separated components (e.g., [catpath]),
  pathauto_cleanstring() should be called for each component, not the
  complete string.
  Example: $placeholders[t('[title]')] = pathauto_cleanstring($node->title);
$src - The "real" URI of the content to be aliased (e.g., "node/$node->nid")
$type - For modules which provided patternitems in hook_autopath(),
  the relevant identifier for the specific item to be aliased (e.g.,
  $node->type)

pathauto_create_alias() returns the alias that was created.


==================
3 - Bulk update function
==================

If a module supports bulk updating of aliases, it must provide a
function of this form, to be called by pathauto when the corresponding
checkbox is selected and the settings page submitted:

function <module>_pathauto_bulkupdate()

The function should iterate over the content items controlled by the
module, calling pathauto_create_alias() for each one. It is
recommended that the function report on its success (e.g., with a
count of created aliases) via drupal_set_message().


==================
4 - Bulk delete hook_path_alias_types()
==================

For modules that create new types of pages that can be aliased with pathauto, a
hook implementation is needed to allow the user to delete them all at once.

function hook_path_alias_types()

This hook returns an array whose keys match the beginning of the source paths
(e.g.: "node/", "user/", etc.) and whose values describe the type of page (e.g.:
"content", "users"). Like all displayed strings, these descriptionsshould be
localized with t(). Use % to match interior pieces of a path; "user/%/track". This
is a database wildcard, so be careful.


==================
Modules that extend node and/or taxonomy
==================

NOTE: this is basically not true any more.  If you feel you need this file an issue.

Many contributed Drupal modules extend the core node and taxonomy
modules. To extend pathauto patterns to support their extensions, they
may implement the pathauto_node and pathauto_taxonomy hooks.

To do so, implement the function <modulename>_pathauto_node (or _taxonomy),
accepting the arguments $op and $node (or $term). Two operations are
supported:

$op = 'placeholders' - return an array keyed on placeholder strings
(e.g., t('[eventyyyy]')) valued with descriptions (e.g. t('The year the
event starts.')).
$op = 'values' - return an array keyed on placeholder strings, valued
with the "clean" actual value for the passed node or category (e.g.,
pathauto_cleanstring(date('M', $eventstart)));

See contrib/pathauto_node_event.inc for an example of extending node
patterns.

File

API.txt
View source
  1. This document explains how to provide "Pathauto integration" in a
  2. module. You need this if you would like to provide additional tokens
  3. or if your module has paths and you wish to have them automatically
  4. aliased. The simplest integration is just to provide tokens so we
  5. cover that first. More advanced integration requires an
  6. implementation of hook_pathauto to provide a settings form.
  7. It may be helpful to review some examples of integration from the
  8. pathauto_node.inc, pathauto_taxonomy.inc, and pathauto_user.inc files.
  9. ==================
  10. 1 - Providing additional tokens
  11. ==================
  12. If all you want is to enable tokens for your module you will simply
  13. need to implement two functions:
  14. hook_token_values
  15. hook_token_list
  16. See the token.module and it's API.txt for more information about this
  17. process.
  18. If the token is intended to generate a path expected to contain slashes,
  19. the token name must end in 'path', 'path-raw' or 'alias'. This indicates to
  20. Pathauto that the slashes should not be removed from the replacement value.
  21. When an object is created (whether it is a node or a user or a
  22. taxonomy term) the data that Pathauto hands to the token_values in the
  23. $object is in a specific format. This is the format that most people
  24. write code to handle. However, during edits and bulk updates the data
  25. may be in a totally different format. So, if you are writing a
  26. hook_token_values implementation to add special tokens, be sure to
  27. test creation, edit, and bulk update cases to make sure your code will
  28. handle it.
  29. ==================
  30. 2 - Settings hook - To create aliases for your module
  31. ==================
  32. You must implement hook_pathauto($op), where $op is always (at this
  33. time) 'settings'. Return an object (NOT an array) containing the
  34. following members, which will be used by pathauto to build a group
  35. of settings for your module and define the variables for saving your
  36. settings:
  37. module - The name of your module (e.g., 'node')
  38. groupheader - The translated label for the settings group (e.g.,
  39. t('Node path settings')
  40. patterndescr - The translated label for the default pattern (e.g.,
  41. t('Default path pattern (applies to all node types with blank patterns below)')
  42. patterndefault - A translated default pattern (e.g., t('[cat]/[title].html'))
  43. placeholders - An array whose keys consist of the translated placeholders
  44. which will appear in patterns (e.g., t('[title]')) and values are
  45. the translated description of the placeholders (e.g.,
  46. t('The title of the node, with spaces and punctuation.')
  47. patternitems - For modules which need to express multiple patterns
  48. (for example, the node module supports a separate pattern for each
  49. node type), an array whose keys consist of identifiers for each
  50. pattern (e.g., the node type name) and values consist of the
  51. translated label for the pattern
  52. supportsfeeds - Modules which support RSS feeds should set this to the
  53. string that's appended to a path for its feed (usually 'feed') , so
  54. when administrators enable "Create feed aliases" an alias for this
  55. content type's feed will be generated in addition to the base alias.
  56. bulkname - For modules which support a bulk update operation, the
  57. translated label for the action (e.g., t('Bulk update node paths'))
  58. bulkdescr - For modules which support a bulk update operation, a
  59. translated, more thorough description of what the operation will do
  60. (e.g., t('Generate aliases for all existing nodes which do not already have aliases.'))
  61. ==================
  62. 2 - $alias = pathauto_create_alias($module, $op, $placeholders, $src, $type=NULL)
  63. ==================
  64. At the appropriate time (usually when a new item is being created for
  65. which a generated alias is desired), call pathauto_create_alias() to
  66. generate and create the alias. See the user, taxonomy, and nodeapi hook
  67. implementations in pathauto.module for examples.
  68. $module - The name of your module (e.g., 'node')
  69. $op - Operation being performed on the item ('insert', 'update', or
  70. 'bulkupdate')
  71. $placeholders - An array whose keys consist of the translated placeholders
  72. which appear in patterns and values are the "clean" values to be
  73. substituted into the pattern. Call pathauto_cleanstring() on any
  74. values which you do not know to be purely alphanumeric, to substitute
  75. any non-alphanumerics with the user's designated separator. Note that
  76. if the pattern has multiple slash-separated components (e.g., [catpath]),
  77. pathauto_cleanstring() should be called for each component, not the
  78. complete string.
  79. Example: $placeholders[t('[title]')] = pathauto_cleanstring($node->title);
  80. $src - The "real" URI of the content to be aliased (e.g., "node/$node->nid")
  81. $type - For modules which provided patternitems in hook_autopath(),
  82. the relevant identifier for the specific item to be aliased (e.g.,
  83. $node->type)
  84. pathauto_create_alias() returns the alias that was created.
  85. ==================
  86. 3 - Bulk update function
  87. ==================
  88. If a module supports bulk updating of aliases, it must provide a
  89. function of this form, to be called by pathauto when the corresponding
  90. checkbox is selected and the settings page submitted:
  91. function _pathauto_bulkupdate()
  92. The function should iterate over the content items controlled by the
  93. module, calling pathauto_create_alias() for each one. It is
  94. recommended that the function report on its success (e.g., with a
  95. count of created aliases) via drupal_set_message().
  96. ==================
  97. 4 - Bulk delete hook_path_alias_types()
  98. ==================
  99. For modules that create new types of pages that can be aliased with pathauto, a
  100. hook implementation is needed to allow the user to delete them all at once.
  101. function hook_path_alias_types()
  102. This hook returns an array whose keys match the beginning of the source paths
  103. (e.g.: "node/", "user/", etc.) and whose values describe the type of page (e.g.:
  104. "content", "users"). Like all displayed strings, these descriptionsshould be
  105. localized with t(). Use % to match interior pieces of a path; "user/%/track". This
  106. is a database wildcard, so be careful.
  107. ==================
  108. Modules that extend node and/or taxonomy
  109. ==================
  110. NOTE: this is basically not true any more. If you feel you need this file an issue.
  111. Many contributed Drupal modules extend the core node and taxonomy
  112. modules. To extend pathauto patterns to support their extensions, they
  113. may implement the pathauto_node and pathauto_taxonomy hooks.
  114. To do so, implement the function _pathauto_node (or _taxonomy),
  115. accepting the arguments $op and $node (or $term). Two operations are
  116. supported:
  117. $op = 'placeholders' - return an array keyed on placeholder strings
  118. (e.g., t('[eventyyyy]')) valued with descriptions (e.g. t('The year the
  119. event starts.')).
  120. $op = 'values' - return an array keyed on placeholder strings, valued
  121. with the "clean" actual value for the passed node or category (e.g.,
  122. pathauto_cleanstring(date('M', $eventstart)));
  123. See contrib/pathauto_node_event.inc for an example of extending node
  124. patterns.