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: d3c551c997e36a058e69c35006c7bfd245a4725f (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 'user.twig' %}

{% set title %}{{ 'API_ReportingApiReference'|translate }}{% endset %}

{% block topcontrols %}
    {% include "@CoreHome/_siteSelectHeader.twig" %}
    {% include "@CoreHome/_periodSelect.twig" %}
{% endblock %}

{% block content %}

<div class="api-list">

    <h2>{{ title }}</h2>

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

    <p>
        {{ '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 }}
    </p>

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

    <p>
        {{ 'API_UsingTokenAuth'|translate('','',"")|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 %}