Projekt

Obecné

Profil

Stáhnout (1.1 KB) Statistiky
| Větev: | Revize:
1
<?php
2
class Word {
3
    public $id;
4
    public $context;
5
    public $date;
6
    public $description;
7
    public $description2;
8
    public $description3;
9
    public $ending;
10
    public $finished;
11
    public $namedentity;
12
    public $position1;
13
    public $position2;
14
    public $positiondetail;
15
    public $word;
16
    public $lemma;
17
    public $tag;
18
    public $manuscript = Array();
19

    
20
    function __construct($id, $context, $date, $description, $description2, $description3, $ending, $finished, $namedentity, $position1, $position2, $positiondetail, $word, $lemma, $tag)
21
    {
22
        $this->id = $id;
23
        $this->context = $context;
24
        $this->date = $date;
25
        $this->description = $description;
26
        $this->description2 = $description2;
27
        $this->description3 = $description3;
28
        $this->ending = $ending;
29
        $this->finished = $finished;
30
        $this->namedentity = $namedentity;
31
        $this->position1 = $position1;
32
        $this->position2 = $position2;
33
        $this->positiondetail = $positiondetail;
34
        $this->word = $word;
35
        $this->lemma = $lemma;
36
        $this->tag = $tag;
37
    }
38
}
(4-4/4)