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

listAllAPI.twig « templates « API « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4cf96174ca67f777c8718ed4d22b749ca25db48 (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
{% extends 'dashboard.twig' %}
{% set showMenu=false %}

{% block content %}

{% include "@CoreHome/_siteSelectHeader.twig" %}

<div class="page_api pageWrap">

    <div class="top_controls">
        {% include "@CoreHome/_periodSelect.twig" %}
    </div>

    <h2>{{ 'API_QuickDocumentationTitle'|translate }}</h2>

    <p>{{ 'API_PluginDescription'|translate }}</p>

    <p>
        <strong>{{ 'API_MoreInformation'|translate("<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/docs/analytics-api'>","</a>","<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/docs/analytics-api/reference'>","</a>")|raw }}</strong>
    </p>

    <h2>{{ 'API_UserAuthentication'|translate }}</h2>

    <p>
        {{ 'API_UsingTokenAuth'|translate('<b>','</b>',"")|raw }}<br/>
        <span id='token_auth'>&amp;token_auth=<strong>{{ token_auth }}</strong></span><br/>
        {{ 'API_KeepTokenSecret'|translate('<b>','</b>')|raw }}
        {{ list_api_methods_with_links|raw }}
        <br/>
</div>
{% endblock %}