blob: 32dfaf5cab05fc56d0382f16d7185b39d83ee381 (
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
|
<?php
namespace Wcms;
class Route extends Item
{
protected $id = null;
protected $aff = null;
protected $action = null;
protected $redirect = null;
const AFF = ['read', 'edit', 'admin', 'media'];
public function __construct($vars)
{
$this->hydrate($vars);
}
public function toarray()
{
$array = [];
if (!empty($this->id)) {
$array[] = 'page';
}
if (!empty($this->aff)) {
$array[] = 'aff='.$this->aff;
}
if (!empty($this->action)) {
$array[] = 'action=' . $this->action;
}
if (!empty($this->redirect)) {
$array[] = $this->redirect;
}
return $array;
}
function tostring()
{
return implode(' ', $this->toarray());
}
public function setid($id)
{
$this->id = $id;
}
public function setaff($aff)
{
$this->aff = $aff;
}
public function setaction($action)
{
$this->action = $action;
}
public function setredirect($redirect)
{
$this->redirect = $redirect;
}
public function id()
{
return $this->id;
}
}
?>
|