blob: 8e1947e5be128191eb4c9afe83041cc052a988af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?php
/**
* @author Till Glöggler <tgloeggl@uos.de>
* @author André Klaßen <klassen@elan-ev.de>
* @license GPL 2 or later
*/
namespace Studip\Activity;
class Filter
{
private
$start_date,
$end_date,
$type,
$verb;
/**
*
* @param string $start_date
*/
public function setStartDate($start_date)
{
$this->start_date = $start_date;
}
/**
*
* @return string
*/
public function getStartDate()
{
return $this->start_date;
}
/**
*
* @param string $end_date
*/
public function setEndDate($end_date)
{
$this->end_date = $end_date;
}
/**
*
* @return string
*/
public function getEndDate()
{
return $this->end_date;
}
/**
*
* @param string $type
*/
public function setType($type)
{
$this->type = $type;
}
/**
*
* @return string
*/
public function getType()
{
return $this->type;
}
/**
*
* @return string
*/
public function getVerb()
{
return $this->verb;
}
/**
*
* @param string $verb
*/
public function setVerb($verb)
{
$this->verb = $verb;
}
}
|