You are here

interface BiblioStyleInterface in Bibliography Module 7.3

Biblio Style interface

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
BiblioStyleInterface::render public function Render the Biblio according to the style plugin. 1
BiblioStyleInterface::__construct public function Constructor for the notifier. 1