You are here

function csl_element::__construct in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 modules/CiteProc/CSL.inc \csl_element::__construct()
  2. 7.2 modules/CiteProc/CSL.inc \csl_element::__construct()
1 call to csl_element::__construct()
csl_format::__construct in modules/CiteProc/CSL.inc
2 methods override csl_element::__construct()
csl_format::__construct in modules/CiteProc/CSL.inc
csl_style::__construct in modules/CiteProc/CSL.inc

File

modules/CiteProc/CSL.inc, line 147

Class

csl_element

Code

function __construct($dom_node = NULL, $citeproc = NULL) {
  $this->citeproc =& $citeproc;
  $this
    ->set_attributes($dom_node);
  $this
    ->init($dom_node, $citeproc);
}