You are here

function emfield_handler_argument_provider::title in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 includes/views/handlers/emfield_handler_argument_provider.inc \emfield_handler_argument_provider::title()
  2. 6.2 includes/views/handlers/emfield_handler_argument_provider.inc \emfield_handler_argument_provider::title()

Override the behavior of title().

File

includes/views/handlers/emfield_handler_argument_provider.inc, line 12
The subclass simply adds properties, for field-specific subclasses to use if they need to.

Class

emfield_handler_argument_provider
@file The subclass simply adds properties, for field-specific subclasses to use if they need to.

Code

function title() {
  $provider = $this->argument;
  $module = $this->content_field['module'];
  $info = emfield_include_invoke($module, $provider, 'info');
  return check_plain($info['name']);
}