| 14956 |
manas |
1 |
<head>
|
|
|
2 |
<style>
|
|
|
3 |
table, th, td {
|
|
|
4 |
border: 1px solid black;
|
|
|
5 |
}
|
|
|
6 |
</style>
|
|
|
7 |
</head>
|
| 14955 |
manas |
8 |
<div class="notificationCampaigns index">
|
|
|
9 |
|
|
|
10 |
<h2><?php echo __('Notification Campaigns'); ?></h2>
|
|
|
11 |
|
| 14990 |
manas |
12 |
<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
|
| 14955 |
manas |
13 |
<tr>
|
| 14956 |
manas |
14 |
<th style="text-align:center"><?php echo $this->Paginator->sort('id'); ?></th>
|
|
|
15 |
<th style="text-align:center"><?php echo $this->Paginator->sort('name'); ?></th>
|
|
|
16 |
<th style="text-align:center"><?php echo $this->Paginator->sort('title'); ?></th>
|
|
|
17 |
<th style="text-align:center"><?php echo $this->Paginator->sort('created'); ?></th>
|
| 14967 |
manas |
18 |
<th style="text-align:center"><?php echo $this->Paginator->sort('expiresat'); ?></th>
|
| 14956 |
manas |
19 |
<th style="text-align:center">Total</th>
|
| 15575 |
manas |
20 |
<th style="text-align:center">Failed</th>
|
| 15004 |
manas |
21 |
<th style="text-align:center">Success</th>
|
| 14956 |
manas |
22 |
<th style="text-align:center">Recieved</th>
|
| 15575 |
manas |
23 |
<th style="text-align:center">Expired</th>
|
|
|
24 |
<th style="text-align:center">Gap</th>
|
| 14956 |
manas |
25 |
<th style="text-align:center">Opened</th>
|
|
|
26 |
<th style="text-align:center">Referrer</th>
|
| 15575 |
manas |
27 |
<th style="text-align:center">Login</th>
|
| 17349 |
manish.sha |
28 |
<th style="text-align:center">Total Sms</th>
|
|
|
29 |
<th style="text-align:center">Failed Sms</th>
|
|
|
30 |
<th style="text-align:center">Success Sms</th>
|
|
|
31 |
<th style="text-align:center">Received Sms</th>
|
|
|
32 |
<th style="text-align:center">Expired Sms</th>
|
|
|
33 |
<th style="text-align:center">Sent To Operator</th>
|
|
|
34 |
<th style="text-align:center">Gap Sms</th>
|
| 14956 |
manas |
35 |
<th style="text-align:center" class="actions"><?php echo __('Actions'); ?></th>
|
| 14955 |
manas |
36 |
|
|
|
37 |
</tr>
|
|
|
38 |
|
| 15581 |
manas |
39 |
<?php foreach ($notificationCampaigns as $key=> $notificationCampaign): ?>
|
| 15004 |
manas |
40 |
<?php
|
|
|
41 |
if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent'])){
|
| 15581 |
manas |
42 |
|
|
|
43 |
$successSent=$notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent'];}
|
|
|
44 |
else{
|
| 15004 |
manas |
45 |
$successSent=0;
|
|
|
46 |
}
|
|
|
47 |
if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0'])){
|
|
|
48 |
$successFailed=$notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0'];
|
|
|
49 |
}else{
|
|
|
50 |
$successFailed=0;
|
|
|
51 |
}
|
|
|
52 |
?>
|
| 14955 |
manas |
53 |
<tr>
|
| 15004 |
manas |
54 |
|
| 14955 |
manas |
55 |
<td align="center" width="4%"><?php echo h($notificationCampaign['NotificationCampaign']['id']); ?> </td>
|
|
|
56 |
<td align="center"><?php echo h($notificationCampaign['NotificationCampaign']['name']); ?> </td>
|
|
|
57 |
<td align="center"><?php echo h($notificationCampaign['NotificationCampaign']['title']); ?> </td>
|
| 17215 |
naman |
58 |
<!-- <td align="center"><?php //echo h($notificationCampaign['NotificationCampaign']['message']); ?> </td> -->
|
| 14955 |
manas |
59 |
<td align="center"><?php echo h($notificationCampaign['NotificationCampaign']['created']); ?> </td>
|
| 14967 |
manas |
60 |
<td align="center"><?php echo h($notificationCampaign['NotificationCampaign']['expiresat']); ?> </td>
|
| 17215 |
naman |
61 |
<td> <?php //echo h($successSent+ $successFailed) ?>
|
|
|
62 |
<?php //echo $result[$notificationCampaign['NotificationCampaign']['id']]['sent'];?>
|
|
|
63 |
<?php
|
|
|
64 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['sent'])){
|
| 17221 |
naman |
65 |
echo $result[$notificationCampaign['NotificationCampaign']['id']]['sent'];
|
| 17236 |
naman |
66 |
$total = $result[$notificationCampaign['NotificationCampaign']['id']]['sent'];
|
|
|
67 |
}else {echo '0';
|
|
|
68 |
$total = 0;
|
|
|
69 |
}
|
| 17215 |
naman |
70 |
?>
|
|
|
71 |
|
|
|
72 |
|
|
|
73 |
</td>
|
| 15575 |
manas |
74 |
|
| 17215 |
naman |
75 |
<td align="center">
|
|
|
76 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0'])){ echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['0'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'sent',0));} else {echo h('0');}?>
|
|
|
77 |
<?php
|
|
|
78 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['0'])){
|
| 17221 |
naman |
79 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['0'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'sent',0));
|
| 17215 |
naman |
80 |
}else {echo h('0');}
|
|
|
81 |
?>
|
|
|
82 |
|
|
|
83 |
</td>
|
| 15575 |
manas |
84 |
|
| 17215 |
naman |
85 |
<td align="center" width="15%">
|
|
|
86 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['sent'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'sent',1)); } else {echo h('0');}?>
|
|
|
87 |
<?php
|
|
|
88 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['1'])){
|
| 17221 |
naman |
89 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['1'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'sent',1));
|
| 17236 |
naman |
90 |
$success = $result[$notificationCampaign['NotificationCampaign']['id']]['1'];
|
|
|
91 |
}else {echo h('0');
|
|
|
92 |
$success = 0;
|
|
|
93 |
}
|
| 17215 |
naman |
94 |
?>
|
| 15581 |
manas |
95 |
<br>
|
| 17215 |
naman |
96 |
<?php //echo h('Trackable= '.$notificationWithVersionCode[$key]);?>
|
| 15581 |
manas |
97 |
<br>
|
| 17215 |
naman |
98 |
<?php //echo h('%= '.round((($notificationWithVersionCode[$key])/($successSent+$successFailed))*100));?>
|
| 17236 |
naman |
99 |
<?php echo h('Success %= '.round((($success)/($total))*100));?>
|
| 15581 |
manas |
100 |
</td>
|
| 14955 |
manas |
101 |
|
| 17215 |
naman |
102 |
<td align="center">
|
|
|
103 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'recieved',1)); } else {echo h('0');}?>
|
|
|
104 |
<?php
|
|
|
105 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['recieved'])){
|
|
|
106 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['recieved'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'recieved',1));
|
|
|
107 |
}else {echo h('0');}
|
|
|
108 |
?>
|
|
|
109 |
|
|
|
110 |
</td>
|
| 14955 |
manas |
111 |
|
| 17215 |
naman |
112 |
<td align="center">
|
|
|
113 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'expired',1)); } else {echo h('0');}?>
|
|
|
114 |
<?php
|
|
|
115 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['expired'])){
|
|
|
116 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['expired'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'expired',1));
|
|
|
117 |
}else {echo h('0');}
|
|
|
118 |
?>
|
|
|
119 |
</td>
|
| 15575 |
manas |
120 |
|
| 17215 |
naman |
121 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved'])){$recieved = $notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['recieved']; } else {$recieved =0;}?>
|
|
|
122 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired'])){$expired = $notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['expired']; } else {$expired=0;}?>
|
|
|
123 |
<?php
|
|
|
124 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['recieved'])){
|
|
|
125 |
$recieved = $result[$notificationCampaign['NotificationCampaign']['id']]['recieved'];
|
|
|
126 |
}else {$recieved =0;}
|
|
|
127 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['expired'])){
|
|
|
128 |
$expired = $result[$notificationCampaign['NotificationCampaign']['id']]['expired'];
|
|
|
129 |
}else {$expired =0;}
|
| 17236 |
naman |
130 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['1'])){
|
|
|
131 |
$sent = $result[$notificationCampaign['NotificationCampaign']['id']]['1'];
|
| 17215 |
naman |
132 |
}else {$sent =0;}
|
|
|
133 |
?>
|
|
|
134 |
<td align="center" width="10%">
|
|
|
135 |
<?php //echo($notificationWithVersionCode[$key] - ($recieved+$expired));?>
|
|
|
136 |
<?php echo($sent - ($recieved+$expired));?>
|
|
|
137 |
|
| 15581 |
manas |
138 |
<br>
|
| 17215 |
naman |
139 |
<?php //if($notificationWithVersionCode[$key]!=0){ echo('%= '.round((($notificationWithVersionCode[$key] - ($recieved+$expired))/$notificationWithVersionCode[$key])*100));}else {echo('%= 0');}?>
|
|
|
140 |
<?php if($sent!=0){ echo('%= '.round((($sent - ($recieved+$expired))/$sent)*100));}else {echo('%= 0');}?>
|
| 15581 |
manas |
141 |
</td>
|
| 17215 |
naman |
142 |
<td align="center">
|
|
|
143 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['opened']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['opened'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['opened'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'opened',1)); } else {echo h('0');}?>
|
|
|
144 |
<?php
|
|
|
145 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['opened'])){
|
|
|
146 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['opened'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'opened',1));
|
|
|
147 |
}else {echo h('0');}
|
|
|
148 |
?>
|
|
|
149 |
|
|
|
150 |
</td>
|
|
|
151 |
<td align="center">
|
|
|
152 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['referrer']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['referrer'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['referrer'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'referrer',1)); } else {echo h('0');}?>
|
|
|
153 |
<?php
|
|
|
154 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['referrer'])){
|
|
|
155 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['referrer'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'referrer',1));
|
|
|
156 |
}else {echo h('0');}
|
|
|
157 |
?>
|
|
|
158 |
</td>
|
|
|
159 |
<td align="center">
|
|
|
160 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'login',1)); } else {echo h('0');}?>
|
|
|
161 |
<?php
|
|
|
162 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['login'])){
|
|
|
163 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['login'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'login',1));
|
|
|
164 |
}else {echo h('0');}
|
|
|
165 |
?>
|
|
|
166 |
</td>
|
| 17349 |
manish.sha |
167 |
|
|
|
168 |
<td align="center">
|
|
|
169 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['login'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'login',1)); } else {echo h('0');}?>
|
|
|
170 |
<?php
|
|
|
171 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['smssent'])){
|
|
|
172 |
echo $result[$notificationCampaign['NotificationCampaign']['id']]['smssent'];
|
|
|
173 |
$smstotal = $result[$notificationCampaign['NotificationCampaign']['id']]['smssent'];
|
|
|
174 |
}else {echo h('0');
|
|
|
175 |
$smstotal=0;
|
|
|
176 |
}
|
|
|
177 |
?>
|
|
|
178 |
</td>
|
|
|
179 |
|
|
|
180 |
<td align="center">
|
|
|
181 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'smsrejected',1)); } else {echo h('0');}?>
|
|
|
182 |
<?php
|
|
|
183 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])){
|
|
|
184 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'smsrejected',1));
|
|
|
185 |
}else {echo h('0');}
|
|
|
186 |
?>
|
|
|
187 |
</td>
|
|
|
188 |
<td align="center">
|
|
|
189 |
<?php //if(isset($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected']) && !empty($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])){echo $this->Html->link(__(h($notificationCampaignsCount[$notificationCampaign['NotificationCampaign']['id']]['smsrejected'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'smsrejected',1)); } else {echo h('0');}?>
|
|
|
190 |
<?php
|
|
|
191 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['smsprocessed'])){
|
|
|
192 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['smsprocessed'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'smsprocessed',1));
|
|
|
193 |
$smssuccess=$result[$notificationCampaign['NotificationCampaign']['id']]['smsprocessed'];
|
|
|
194 |
}else {echo h('0');
|
|
|
195 |
$smssuccess=0;
|
|
|
196 |
}
|
|
|
197 |
if($smstotal==0){
|
|
|
198 |
$successpert = 0;
|
|
|
199 |
}else{
|
|
|
200 |
$successpert = round(($smssuccess)/($smstotal)*100);
|
|
|
201 |
}
|
|
|
202 |
?>
|
|
|
203 |
<br>
|
|
|
204 |
<br>
|
|
|
205 |
<?php echo h('Success %= '.$successpert);?>
|
|
|
206 |
</td>
|
|
|
207 |
<td align="center">
|
|
|
208 |
<?php
|
|
|
209 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_DELIVRD'])){
|
|
|
210 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_DELIVRD'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'SMS_DELIVRD',1));
|
|
|
211 |
$receivedsms=$result[$notificationCampaign['NotificationCampaign']['id']]['SMS_DELIVRD'];
|
|
|
212 |
}else {echo h('0');
|
|
|
213 |
$receivedsms = 0;
|
|
|
214 |
}
|
|
|
215 |
?>
|
|
|
216 |
</td>
|
|
|
217 |
<td align="center">
|
|
|
218 |
<?php
|
|
|
219 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_EXPIRED'])){
|
|
|
220 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_EXPIRED'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'SMS_EXPIRED',1));
|
|
|
221 |
$expiredsms = $result[$notificationCampaign['NotificationCampaign']['id']]['SMS_EXPIRED'];
|
|
|
222 |
}else {echo h('0');
|
|
|
223 |
$expiredsms = 0;
|
|
|
224 |
}
|
|
|
225 |
?>
|
|
|
226 |
</td>
|
|
|
227 |
<td align="center">
|
|
|
228 |
<?php
|
|
|
229 |
if(isset($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_SENT_OPERATOR'])){
|
|
|
230 |
echo $this->Html->link(__(h($result[$notificationCampaign['NotificationCampaign']['id']]['SMS_SENT_OPERATOR'])), array('action' => 'show', $notificationCampaign['NotificationCampaign']['id'], 'SMS_SENT_OPERATOR',1));
|
|
|
231 |
$sentoperator = $result[$notificationCampaign['NotificationCampaign']['id']]['SMS_SENT_OPERATOR'];
|
|
|
232 |
}else {echo h('0');
|
|
|
233 |
$sentoperator = 0;
|
|
|
234 |
}
|
|
|
235 |
?>
|
|
|
236 |
</td>
|
|
|
237 |
|
|
|
238 |
<td align="center">
|
|
|
239 |
<?php //echo($notificationWithVersionCode[$key] - ($recieved+$expired));?>
|
|
|
240 |
<?php echo($smssuccess - ($receivedsms+$expiredsms));?>
|
|
|
241 |
|
|
|
242 |
<br>
|
|
|
243 |
|
|
|
244 |
<?php if($smssuccess!=0){ echo('%= '.round((($smssuccess - ($receivedsms+$expiredsms+$sentoperator))/$smssuccess)*100));}else {echo('%= 0');}?>
|
|
|
245 |
<br>
|
|
|
246 |
</td>
|
| 15004 |
manas |
247 |
|
| 14967 |
manas |
248 |
<td align="center" width="15%" class="actions">
|
| 15004 |
manas |
249 |
|
| 14955 |
manas |
250 |
<?php echo $this->Html->link(__('View'), array('action' => 'view', $notificationCampaign['NotificationCampaign']['id'])); ?>
|
|
|
251 |
|
|
|
252 |
<?php echo $this->Html->link(__('Edit'), array('action' => 'edit', $notificationCampaign['NotificationCampaign']['id'])); ?>
|
| 17215 |
naman |
253 |
<!--<?php //echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $notificationCampaign['NotificationCampaign']['id']), null, __('Are you sure you want to delete # %s?', $notificationCampaign['NotificationCampaign']['id'])); ?> -->
|
| 14955 |
manas |
254 |
</td>
|
|
|
255 |
</tr>
|
|
|
256 |
<?php endforeach; ?>
|
|
|
257 |
</table>
|
|
|
258 |
<p>
|
|
|
259 |
<?php
|
|
|
260 |
echo $this->Paginator->counter(array(
|
|
|
261 |
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
|
|
262 |
));
|
|
|
263 |
?> </p>
|
|
|
264 |
<div class="paging">
|
|
|
265 |
<?php
|
|
|
266 |
echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
|
|
|
267 |
echo $this->Paginator->numbers(array('separator' => ' '));
|
|
|
268 |
echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
|
|
|
269 |
?>
|
|
|
270 |
</div>
|
| 15575 |
manas |
271 |
</div>
|