You are here

function views_handler_field_system_info_stylesheets::render_item in Views System 7.3

Same name and namespace in other branches
  1. 6.3 views/handlers/views_handler_field_system_info_stylesheets.inc \views_handler_field_system_info_stylesheets::render_item()
  2. 6.2 views/handlers/views_handler_field_system_info_stylesheets.inc \views_handler_field_system_info_stylesheets::render_item()

File

views/handlers/views_handler_field_system_info_stylesheets.inc, line 60
Views field handler for the views_system module.

Class

views_handler_field_system_info_stylesheets
Provides display options and renders the stylesheets field of the system item.

Code

function render_item($count, $item) {
  $tokens = array(
    '[filename]',
    '[media]',
  );
  $values = array(
    $item['filename'],
    $item['media'],
  );
  return str_replace($tokens, $values, check_plain($this->options['system_info_stylesheets_format']));
}