You are here

emfield_handler_argument_provider.inc in Embedded Media Field 6.3

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

File

includes/views/handlers/emfield_handler_argument_provider.inc
View source
<?php

/**
 * @file
 * The subclass simply adds properties,
 * for field-specific subclasses to use if they need to.
 */
class emfield_handler_argument_provider extends content_handler_argument_string {

  /**
   * Override the behavior of title().
   */
  function title() {
    $provider = $this->argument;
    $module = $this->content_field['module'];
    $info = emfield_include_invoke($module, $provider, 'info');
    return check_plain($info['name']);
  }

}

Classes

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