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

browsePluginsActions.twig « templates « CorePluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be1a69c798d5a1598bd391235c4dcf8a5bad3665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="sort">
    <a href="{{ linkTo({'sort': 'popular', 'query': ''}) }}" {% if 'popular' == sort %}class="active"{% endif %}>{{ 'CorePluginsAdmin_SortByPopular'|translate }}</a>
    |
    <a href="{{ linkTo({'sort': 'newest', 'query': ''}) }}" {% if 'newest' == sort %}class="active"{% endif %}>{{ 'CorePluginsAdmin_SortByNewest'|translate }}</a>
    |
    <a href="{{ linkTo({'sort': 'alpha', 'query': ''}) }}" {% if 'alpha' == sort %}class="active"{% endif %}>{{ 'CorePluginsAdmin_SortByAlpha'|translate }}</a>
    |
    <form action="{{ linkTo({'sort': ''}) }}" method="POST">
        <input value="{{ query }}" placeholder="{{ 'General_Search'|translate }}" type="text" name="query"/>
        <button type="submit">{{ 'General_Search'|translate }}</button>
    </form>
</div>