Same name and namespace in other branches
  1. 6.x-3.x handlers/views_handler_field.inc \views_handler_field::get_render_tokens()

Get the 'render' tokens to use for advanced rendering.

This runs through all of the fields and arguments that are available and gets their values. This will then be used in one giant str_replace().

3 calls to views_handler_field::get_render_tokens()
views_handler_field::render_text in handlers/views_handler_field.inc
Perform an advanced text render for the item.
views_handler_field_links::get_links in handlers/views_handler_field_links.inc
Return the list of links of this field.
views_handler_field_math::render in handlers/views_handler_field_math.inc
Render the field.

File

handlers/views_handler_field.inc, line 1459
Definition of views_handler_field.

Class

views_handler_field
Base field handler that has no options and renders an unformatted field.

Code

public function get_render_tokens($item) {
  $tokens = array();
  if (!empty($this->view->build_info['substitutions'])) {
    $tokens = $this->view->build_info['substitutions'];
  }
  $count = 0;
  foreach ($this->view->display_handler
    ->get_handlers('argument') as $handler) {
    $token = '%' . ++$count;
    if (!isset($tokens[$token])) {
      $tokens[$token] = '';
    }

    // Use strip tags as there should never be HTML in the path. However, we
    // need to preserve special characters like " that were removed by
    // check_plain().
    $tokens['!' . $count] = isset($this->view->args[$count - 1]) ? strip_tags(decode_entities($this->view->args[$count - 1])) : '';
  }

  // Get flattened set of tokens for any array depth in $_GET parameters.
  $tokens += $this
    ->get_token_values_recursive($_GET);

  // Now add replacements for our fields.
  foreach ($this->view->display_handler
    ->get_handlers('field') as $field => $handler) {
    if (isset($handler->last_render)) {
      $tokens["[{$field}]"] = $handler->last_render;
    }
    else {
      $tokens["[{$field}]"] = '';
    }
    if (!empty($item)) {
      $this
        ->add_self_tokens($tokens, $item);
    }

    // We only use fields up to (and including) this one.
    if ($field == $this->options['id']) {
      break;
    }
  }

  // Store the tokens for the row so we can reference them later if necessary.
  $this->view->style_plugin->render_tokens[$this->view->row_index] = $tokens;
  $this->last_tokens = $tokens;
  return $tokens;
}