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

manage.tpl « templates « PluginsAdmin « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 033c1793b9bbda09ad6d1f088428016d8ea3fb79 (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
<link rel="stylesheet" href="themes/default/common-admin.css">

<h2>Plugins</h2>

<table id="plugins">

<thead>
	<th>Name</th>
	<th>Description</th>
	<th>Author</th>
	<th>Version</th>
	<th>Action</th>
</thead>

<tbody>
	{foreach from=$pluginsName key=name item=plugin}

{if $plugin.activated}<tr class="activate">{else}<tr class="deactivate">{/if}
	<td><b>{$name}</b></td>
	<td>{$plugin.info.description}&nbsp;</td>
	<td class="center"><a href="{$plugin.info.homepage}">{$plugin.info.author}</a></td>
	<td>{$plugin.info.version}</td>
	<td class="switch">{if $plugin.activated}<a href=?module=PluginsAdmin&action=deactivate&pluginName={$name}>Deactivate</a>
{else}<a href=?module=PluginsAdmin&action=activate&pluginName={$name}>Activate</a>{/if}</td>
	</tr>
{/foreach}

</tbody>
</table>

<p><a href='?module=Home'>Back to Piwik homepage</a></p>