I have Pathauto configured to generate an alias based on the title of a node, for a specific content type. The problem is that I want to make small changes in this title before Pathauto uses it to generate the alias.
The first comment in this post suggests the use of hook_token_values, but I couldn’t really understand how to use it, even after reading the docs. In my tests, when I implement this hook, the alias generated is always “array”, which means I’m missing something.
Any help? Thanks.
It might be that you missed to implement
hook_token_listas well. Providing a new token is a two step process:hook_token_listto declare the tokens you are going to provide. This will just be the name of the tokens, along with a short explanation, and the information to what type of objects the tokens will apply (e.g. node, user, taxonomy, …)hook_token_valueto actually generate the content of the tokens. This will be called when the tokens are to be replaced with the content they should stand for.As you just want to provide an alternative version of the title token already provided by the token module, it is probably best to just copy the relevant portions from token_node.inc, stripped down to the relevant cases and adjusted to be used in another module:
This simply says that
yourModuleprovides a token for node objects, namedyourModule-title, along with a short description. The main work gets done in the other hook:This will be called whenever the tokens for node objects are needed, with the node in question being passed as the
$objectparameter (for a user token, the$typewould be ‘user’, and$objectwould be the user object, and so on for other types). What it does is creating an array of values, keyed by the token name, with the replacement for that token as the value. The original code from token_node.inc just runs the title throughcheck_plain(), so this would be the place to insert your own logic.