Project

General

Profile

Download (611 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/**
3
 * @file
4
 * Class to provide a footnote key.
5
 *
6
 * @copyright
7
 *   (C) 2007-2012 EDIT
8
 *   European Distributed Institute of Taxonomy
9
 *   http://www.e-taxonomy.eu
10
 *
11
 *   The contents of this module are subject to the Mozilla
12
 *   Public License Version 1.1.
13
 * @see http://www.mozilla.org/MPL/MPL-1.1.html
14
 */
15

    
16
/**
17
 * Provides a footnote key.
18
 */
19
class FootnoteKey {
20
  public $keyStr, $footnoteListKey;
21

    
22
  /**
23
   * @todo please document this function.
24
   */
25
  public function __construct($keyStr, $footnoteListKey) {
26
    $this->keyStr = $keyStr;
27
    $this->footnoteListKey = $footnoteListKey;
28
  }
29
}
(3-3/5)