Using Drupal 7 and the module Privatemsg 7.2, I'm trying to add custom arguments which are passed to the Privatemsg from their content link.
The link is constructed with the privatemsg function privatemsg_node_view.
To achieve my goal, I'm looking at line 9.
'href' => $url . '/' . t('@node', array('@node' => $node->title)),
and trying to call a custom field from the privatemsg body by doing something like
'href' => $url . '/' . t('@node', array('@node' => $node->title)) . '/' . t('@node',
array('@node' => $node->content['field_alias_reference'])),
this would add another "/[my_field]/" to the url, but I'm not catching the field. I've tried it in all variations of field syntax that I can think of
$content->field_alias_reference['0']['value'])
etc... I'm just not a very good PHP person and am not finding the write formulation...
That is my preferred solution because of its simplicity. Another idea is to do something like line 10, which calls the function drupal_get_destination() that creates and appends an argument to the URL: ?destination=node/333
'query' => drupal_get_destination(),
and to create a custom function for making another argument.
Does anyone have any ideas, advice or similar examples?