You are here

public function BiblioStyleBase::getMapping in Bibliography Module 7.3

@todo: Make abstract function?

2 calls to BiblioStyleBase::getMapping()
BiblioStyleBase::getBiblioType in plugins/biblio_style/abstract.inc
Returns Biblio Publication Type based on Publication Type.
BiblioStyleEndNoteTagged::getMapping in plugins/biblio_style/endnote/BiblioStyleEndNoteTagged.php
@inheritdoc
4 methods override BiblioStyleBase::getMapping()
BiblioStyleBibtex::getMapping in plugins/biblio_style/bibtex/BiblioStyleBibtex.class.php
Mapping of Biblio and BibTeX.
BiblioStyleCiteProc::getMapping in plugins/biblio_style/citeproc/BiblioStyleCiteProc.class.php
@todo: Make abstract function?
BiblioStyleEndNoteTagged::getMapping in plugins/biblio_style/endnote/BiblioStyleEndNoteTagged.php
@inheritdoc
BiblioStyleEndNoteXML8::getMapping in plugins/biblio_style/endnote/BiblioStyleEndNoteXML8.php
@inheritdoc

File

plugins/biblio_style/abstract.inc, line 291

Class

BiblioStyleBase
An abstract implementation of MessageNotifierInterface.

Code

public function getMapping() {
  return array(
    'field' => array(),
    'type' => array(),
  );
}