1: <?php
2:
3: /*
4: * To change this license header, choose License Headers in Project Properties.
5: * To change this template file, choose Tools | Templates
6: * and open the template in the editor.
7: */
8:
9: namespace academicpuma\citeproc;
10:
11: /**
12: * Description of csl_et_al
13: *
14: * @author sebastian
15: */
16:
17:
18: class EtAl extends Text {
19:
20: function __construct($dom_node = NULL, $citeproc = NULL) {
21: $this->var = 'et-al';
22: $this->source = 'term';
23: parent::__construct($dom_node, $citeproc);
24: }
25:
26: }
27: