You are here

function views_handler_field::element_label_classes in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 7.3 handlers/views_handler_field.inc \views_handler_field::element_label_classes()

Return the class of the field's label.

File

handlers/views_handler_field.inc, line 295

Class

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

Code

function element_label_classes($row_index = NULL) {
  $classes = $this
    ->tokenize_value($this->options['element_label_class'], $row_index);
  return views_css_safe($classes);
}