You are here

public function views_handler_field_accesslog_path::render in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/statistics/views_handler_field_accesslog_path.inc \views_handler_field_accesslog_path::render()
  2. 6.2 modules/statistics/views_handler_field_accesslog_path.inc \views_handler_field_accesslog_path::render()

Render the field.

Parameters

array $values: The values retrieved from the database.

Overrides views_handler_field::render

File

modules/statistics/views_handler_field_accesslog_path.inc, line 51
Definition of views_handler_field_accesslog_path.

Class

views_handler_field_accesslog_path
Provide simple renderer that turns a URL into a clickable link.

Code

public function render($values) {
  $value = $this
    ->get_value($values);
  return $this
    ->render_link($this
    ->sanitize_value($value), $values);
}