Skip to content

Instantly share code, notes, and snippets.

@delta-9
Last active February 18, 2016 09:56
Show Gist options
  • Save delta-9/65e6c2d2f95c138f6d3c to your computer and use it in GitHub Desktop.
Save delta-9/65e6c2d2f95c138f6d3c to your computer and use it in GitHub Desktop.
<?php
/**
* Implements hook_token_info_alter().
*/
function cake_token_info_alter(&$data) {
// Chained tokens for cake.
$data ['tokens']['cake']['author'] = array(
'name' => t('The cake author'),
'description' => t('User author of the cake'),
'type' => 'user',
);
$data ['tokens']['cake']['recipe'] = array(
'name' => t('The cake recipe'),
'description' => t('Node recipe of the cake.'),
'type' => 'node',
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment