You are here

function citeproc::map_field in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/CiteProc/CSL.inc \citeproc::map_field()
  2. 7.2 modules/CiteProc/CSL.inc \citeproc::map_field()

File

modules/CiteProc/CSL.inc, line 104

Class

citeproc
CiteProc-PHP

Code

function map_field($field) {
  if ($this->mapper) {
    return $this->mapper
      ->map_field($field);
  }
  return $field;
}