Overview

Namespaces

  • academicpuma
    • citeproc

Classes

  • Bibliography
  • Choose
  • Citation
  • CiteProc
  • Collection
  • CSLUtils
  • Date
  • DatePart
  • Element
  • EtAl
  • Factory
  • Format
  • Group
  • Info
  • Label
  • Layout
  • Locale
  • Macro
  • Macros
  • Mapper
  • Name
  • Names
  • Number
  • Option
  • Options
  • PElse
  • PElseIf
  • PIf
  • RenderingElement
  • Sort
  • Style
  • Substitute
  • Terms
  • Text
  • Overview
  • Namespace
  • Class
 1: <?php
 2: 
 3: 
 4: namespace academicpuma\citeproc;
 5: 
 6: /**
 7:  * Description of csl_collection
 8:  *
 9:  * @author sebastian
10:  */
11: class Collection {
12: 
13:     protected $elements = array();
14: 
15:     function addElement($elem) {
16:         if (isset($elem))
17:             $this->elements[] = $elem;
18:     }
19: 
20:     function render($data, $mode = NULL) {
21:         
22:     }
23: 
24:     function format($text) {
25:         return $text;
26:     }
27: 
28: }
API documentation generated by ApiGen