| Line 42... |
Line 42... |
| 42 |
<td><?php if(!isset($appTransaction['AppTransaction']['approved'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['approved']);}; ?> </td>
|
42 |
<td><?php if(!isset($appTransaction['AppTransaction']['approved'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['approved']);}; ?> </td>
|
| 43 |
<td><?php if(!isset($appTransaction['AppTransaction']['conversion_percentage'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['conversion_percentage']);}; ?> </td>
|
43 |
<td><?php if(!isset($appTransaction['AppTransaction']['conversion_percentage'])){echo h('0');}else{echo h($appTransaction['AppTransaction']['conversion_percentage']);}; ?> </td>
|
| 44 |
</tr>
|
44 |
</tr>
|
| 45 |
<?php endforeach; ?>
|
45 |
<?php endforeach; ?>
|
| 46 |
</table>
|
46 |
</table>
|
| 47 |
<p>
|
- |
|
| 48 |
<?php
|
- |
|
| 49 |
echo $this->Paginator->counter(array(
|
- |
|
| 50 |
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
- |
|
| 51 |
));
|
- |
|
| 52 |
?> </p>
|
- |
|
| 53 |
<div class="paging">
|
- |
|
| 54 |
<?php
|
- |
|
| 55 |
echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
|
- |
|
| 56 |
echo $this->Paginator->numbers(array('separator' => ' '));
|
- |
|
| 57 |
echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
|
- |
|
| 58 |
?>
|
- |
|
| 59 |
</div>
|
- |
|
| 60 |
<script type="text/javascript">
|
47 |
<script type="text/javascript">
|
| 61 |
$('#mySelect').on('change', function() {
|
48 |
$('#mySelect').on('change', function() {
|
| 62 |
var value = $(this).val();
|
49 |
var value = $(this).val();
|
| 63 |
if(value=='yesterday'){
|
50 |
if(value=='yesterday'){
|
| 64 |
$('#date_range').hide();
|
51 |
$('#date_range').hide();
|