You are here

class csl_collection in Bibliography Module 7

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

Hierarchy

Expanded class hierarchy of csl_collection

File

modules/CiteProc/CSL.inc, line 169
CiteProc-PHP.

View source
class csl_collection {
  protected $elements = array();

  /**
   *
   */
  public function add_element($elem) {
    if (isset($elem)) {
      $this->elements[] = $elem;
    }
  }

  /**
   *
   */
  public function render($data, $mode = NULL) {
  }

  /**
   *
   */
  public function format($text) {
    return $text;
  }

}

Members