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 CitationStyles
13: *
14: * @author sebastian
15: */
16: class CSLUtils {
17:
18: const STYLES_FOLDER = '/styles/';
19:
20: const PUBLICATIONS_FOLDER = '/pubs/';
21:
22: static $styles = array(
23: 'apa',
24: //'chicago',
25: 'din-1505-2',
26: 'ieee',
27: 'harvard1',
28: 'harvard7de',
29: //'lncs',
30: 'vancouver'
31:
32: );
33: }
34: