You are here

function csl_citation::render in Bibliography Module 6.2

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

Overrides csl_rendering_element::render

File

modules/CiteProc/CSL.inc, line 1387

Class

csl_citation

Code

function render($data, $mode = NULL) {
  $this->citeproc->quash = array();
  $text = $this->layout
    ->render($data, 'citation');
  return $this
    ->format($text);
}