You are here

function views_plugin_row_file_view::summary_title in File Entity (fieldable files) 7.2

Same name and namespace in other branches
  1. 7.3 views/views_plugin_row_file_view.inc \views_plugin_row_file_view::summary_title()
  2. 7 views/views_plugin_row_file_view.inc \views_plugin_row_file_view::summary_title()

Returns the summary of the settings in the display.

Overrides views_plugin::summary_title

File

views/views_plugin_row_file_view.inc, line 45
Contains the file view row style plugin.

Class

views_plugin_row_file_view
Plugin which performs a file_view on the resulting object.

Code

function summary_title() {
  $view_mode_label = file_entity_view_mode_label($this->options['view_mode'], t('Unknown'));
  return check_plain($view_mode_label);
}