interface BiblioStyleInterface in Bibliography Module 7.3
Biblio Style interface
Hierarchy
- interface \BiblioStyleInterface
Expanded class hierarchy of BiblioStyleInterface
All classes that implement BiblioStyleInterface
File
- plugins/
biblio_style/ abstract.inc, line 6
View source
interface BiblioStyleInterface {
/**
* Constructor for the notifier.
*
* @param $plugin
* The notifier plugin object. Note the "options" values might have
* been overriden in message_notify_send_message().
* @param Biblio $biblio
* The Biblio entity.
*/
public function __construct($plugin, Biblio $biblio = NULL);
/**
* Render the Biblio according to the style plugin.
*
* @return
* A an HTML string.
*/
public function render($options = array(), $langcode = NULL);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BiblioStyleInterface:: |
public | function | Render the Biblio according to the style plugin. | 1 |
BiblioStyleInterface:: |
public | function | Constructor for the notifier. | 1 |