Please add this support. I want to make VBO group tag view and there is presently no way to enter the [gid] beside the appended term ids

Comments

ñull’s picture

Category: Feature request » Support request

Apparently nobody has any interest. So please could somebody give me hint how to add this support? I would like to let the VBO send the selected parameters to node/[gid]/tags/ which is an extra tab in the group node.

gonzalves’s picture

Even I am looking for this feature.. can someone help please..?

apmsooner’s picture

This would be a very useful feature.

Anonymous’s picture

plus one from here too.

kenorb’s picture

Category: Support request » Feature request
kenorb’s picture

kenorb’s picture

Workaround:

/**
 * Implements hook_drupal_goto_alter().
 */
function MYMODULE_drupal_goto_alter(&$path, &$options, &$http_response_code) {
  if (module_exists('token') && user_access('administer nodes') && strpos($path, '[') !== FALSE) {
    // If token is found in path, replace it.
    // This feature is only available for admins for safety reasons.
    // Example path: /some/path/[current-page:arg:4]/csv
    $path = token_replace($path);
  }
}

Related: How to add parameter to URL when passing ids as arguments to a page?