-
Notifications
You must be signed in to change notification settings - Fork 16
/
ETagListWidget.php
114 lines (96 loc) · 2.21 KB
/
ETagListWidget.php
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
Yii::import('zii.widgets.CMenu');
/**
* ETagListWidget
*/
class ETagListWidget extends CMenu {
/**
* Model with ETaggableBehavior attached
*/
public $model;
/**
* Behavior name
*/
public $field = 'tags';
/**
* Show all tags
*/
public $all = false;
/**
* Show counter for each tag
*/
public $count = false;
/**
* Do not show tags with count below this value.
* Currently works only when count is shown.
*/
public $countLimit = 1;
/**
* CSS class
*/
public $class = 'tags';
/**
* URL to use for tag links.
* @see CHtml::normalizeUrl.
*/
public $url = '';
/* URL tag parameter name */
public $urlParamName = 'tag';
/**
* Criteria used to select tags
*/
public $criteria = null;
function init(){
if(!isset($this->htmlOptions['class'])) $this->htmlOptions['class'] = 'tags';
$tags = array();
$criteria = new CDbCriteria();
$criteria->order = $this->model->{$this->field}->tagTableName;
if($this->all){
if($this->count){
$criteria->having = 'count>='.(int)$this->countLimit;
if($this->criteria)
$criteria->mergeWith($this->criteria);
$tags = $this->model->{$this->field}->getAllTagsWithModelsCount($criteria);
}
else {
if($this->criteria)
$criteria->mergeWith($this->criteria);
$tags = $this->model->{$this->field}->getAllTags($criteria);
}
}
else {
if($this->count){
$criteria->having = 'count>='.(int)$this->countLimit;
if($this->criteria)
$criteria->mergeWith($this->criteria);
$tags = $this->model->{$this->field}->getTagsWithModelsCount($criteria);
}
else {
if($this->criteria)
$criteria->mergeWith($this->criteria);
$tags = $this->model->{$this->field}->getTags($criteria);
}
}
foreach($tags as $tag){
$url = (array)$this->url;
if(is_array($tag)){
$url[$this->urlParamName] = $tag['name'];
$this->items[] = array(
'label' => CHtml::encode($tag['name']).' <span>'.$tag['count'].'</span>',
'url' => $url,
);
}
else {
$url[$this->urlParamName] = $tag;
$this->items[] = array(
'label' => CHtml::encode($tag),
'url' => $url,
);
}
}
parent::init();
}
function run(){
$this->renderMenu($this->items);
}
}