464a465,491
> }
> 
> 
> /**
>  * Implementation of hook_token_list(). Documents the individual
>  * tokens handled by the module.
>  */
> function permalink_token_list($type = 'all') {
>   $tokens = array();
>   if ($type == 'comment' || $type == 'all') {  
>     $tokens['comment']['comment-permalink-url'] = t('The permalink comment reply url.');
>   }
>   return $tokens;
> }
> 
> /**
>  * Implementation of hook_token_values()
>  */
> function permalink_token_values($type, $object = NULL, $options = array()) {
>   switch ($type) {
>     case 'comment':
>       if ($comment = (object)$object) {
>         $values['comment-permalink-url'] =  url('comment/'. $comment->cid, array('fragment' =>'comment-'. $comment->cid, 'absolute' => TRUE));
>         return $values;
>       }
>       break;
>   }
