You are here

class csl_collection in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/CiteProc/CSL.inc \csl_collection
  2. 7 modules/CiteProc/CSL.inc \csl_collection

Hierarchy

Expanded class hierarchy of csl_collection

File

modules/CiteProc/CSL.inc, line 128

View source
class csl_collection {
  protected $elements = array();
  function add_element($elem) {
    if (isset($elem)) {
      $this->elements[] = $elem;
    }
  }
  function render($data, $mode = NULL) {
  }
  function format($text) {
    return $text;
  }

}

Members