Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.tpl « templates « Live « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13e8eb8d9235a36d24b6d9619bae2e2c5827ba02 (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
{literal}
<script type="text/javascript" charset="utf-8">
    $(document).ready(function () {
        $('#visitsLive').liveWidget({
            interval: {/literal}{$liveRefreshAfterMs}{literal},
            onUpdate: function () {
                //updates the numbers of total visits in startbox
                var ajaxRequest = new ajaxHelper();
                ajaxRequest.setFormat('html');
                ajaxRequest.addParams({
                    module: 'Live',
                    action: 'ajaxTotalVisitors'
                }, 'GET');
                ajaxRequest.setCallback(function (r) {
                    $("#visitsTotal").html(r);
                });
                ajaxRequest.send(false);
            },
            maxRows: 10,
            fadeInSpeed: 600,
            dataUrlParams: {
                module: 'Live',
                action: 'getLastVisitsStart'
            }
        });
    });
</script>
{/literal}

{include file="Live/templates/totalVisits.tpl"}

{$visitors}

<div class="visitsLiveFooter">
    <a title="Pause Live!" href="javascript:void(0);" onclick="onClickPause();"><img id="pauseImage" border="0"
                                                                                     src="plugins/Live/templates/images/pause_disabled.gif"/></a>
    <a title="Start Live!" href="javascript:void(0);" onclick="onClickPlay();"><img id="playImage" border="0" src="plugins/Live/templates/images/play.gif"/></a>
    {if !$disableLink}
        &nbsp;
        <a class="rightLink" href="javascript:broadcast.propagateAjax('module=Live&action=getVisitorLog')">{'Live_LinkVisitorLog'|translate}</a>
    {/if}
</div>