You are here

public function BiblioStyleBase::__construct in Bibliography Module 7.3

Constructor for the notifier.

Parameters

$plugin: The notifier plugin object. Note the "options" values might have been overriden in message_notify_send_message().

Biblio $biblio: The Biblio entity.

Overrides BiblioStyleInterface::__construct

File

plugins/biblio_style/abstract.inc, line 76

Class

BiblioStyleBase
An abstract implementation of MessageNotifierInterface.

Code

public function __construct($plugin, Biblio $biblio = NULL) {
  $this->plugin = $plugin;
  $this->biblio = $biblio;
}