Newer
Older
<?php
/**
* Piwik - Open source web analytics
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugin;
/**
* @api
*/
class Segment
{
const TYPE_DIMENSION = 'dimension';
const TYPE_METRIC = 'metric';
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
90
91
92
93
private $type;
private $category;
private $name;
private $segment;
private $sqlSegment;
private $sqlFilter;
private $sqlFilterValue;
private $acceptValues;
public function __construct()
{
$this->init();
}
protected function init()
{
}
/**
* @param mixed $acceptValues
*/
public function setAcceptValues($acceptValues)
{
$this->acceptValues = $acceptValues;
}
/**
* @param mixed $category
*/
public function setCategory($category)
{
$this->category = $category;
}
/**
* @param mixed $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @param mixed $segment
*/
public function setSegment($segment)
{
$this->segment = $segment;
}
/**
* @param mixed $sqlFilter
*/
public function setSqlFilter($sqlFilter)
{
$this->sqlFilter = $sqlFilter;
}
/**
* @param mixed $sqlFilterValue
*/
public function setSqlFilterValue($sqlFilterValue)
{
$this->sqlFilterValue = $sqlFilterValue;
}
/**
* @param mixed $sqlSegment
*/
public function setSqlSegment($sqlSegment)
{
$this->sqlSegment = $sqlSegment;
}
/**
* @return string
*/
public function getSqlSegment()
{
return $this->sqlSegment;
}
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* @param mixed $type
*/
public function setType($type)
{
$this->type = $type;
}
public function toArray()
{
$segment = array(
'type' => $this->type,
'category' => $this->category,
'name' => $this->name,
'segment' => $this->segment,
'sqlSegment' => $this->sqlSegment,
);
if (!empty($this->sqlFilter)) {
$segment['sqlFilter'] = $this->sqlFilter;
}
if (!empty($this->sqlFilterValue)) {
$segment['sqlFilterValue'] = $this->sqlFilterValue;
}
if (!empty($this->acceptValues)) {
$segment['acceptedValues'] = $this->acceptValues;
}
return $segment;
}
}