all_element_texts_options
Added in version 3.2.
Usage
Filters the options passed to all_element_texts.
Value
array$optionsArray of the options passed to a call to all_element_texts.
Arguments
Omeka_Record_AbstractRecordrecordThe record all_element_texts is being called on.
Examples
Change the partial used to display elements
class MyPlugin extends Omeka_Plugin_AbstractPlugin
{
protected $_filters = ['all_element_texts_options'];
public filterActionContexts($options, $args)
{
$options['partial'] = 'common/custom-record-metadata.php';
return $options;
}
}