emfield_handler_argument_provider.inc in Embedded Media Field 6.2
Same filename and directory in other branches
The subclass simply adds properties, for field-specific subclasses to use if they need to.
File
includes/views/handlers/emfield_handler_argument_provider.incView 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
Name | Description |
---|---|
emfield_handler_argument_provider | @file The subclass simply adds properties, for field-specific subclasses to use if they need to. |