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

DBStats.tpl « templates « DBStats « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 686e3d1fca9f4dc0a943789d57b6e8f9df3fbfef (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
43
44
45
46
47
48
49
50
51
52
{assign var=showSitesSelection value=false}
{assign var=showPeriodSelection value=false}
{include file="CoreAdminHome/templates/header.tpl"}
<div style="max-width:980px;">

<h2>{'DBStats_DatabaseUsage'|translate}</h2>
{assign var=totalSize value=$tablesStatus.Total.Total_length}
<p>{'DBStats_MainDescription'|translate:$totalSize}
<br />
{'DBStats_LearnMore'|translate:"<a href='?module=Proxy&action=redirect&url=http://piwik.org/docs/setup-auto-archiving/' target='_blank'>Piwik Auto Archiving</a>"}
<br />
{'PrivacyManager_DeleteDataSettings'|translate}:	<a href='{url module="PrivacyManager" action="privacySettings"}#deleteLogsAnchor'>
{capture assign=clickDeleteLogSettings}{'PrivacyManager_DeleteDataSettings'|translate}{/capture}
		{'PrivacyManager_ClickHereSettings'|translate:"'$clickDeleteLogSettings'"}
	</a>
	
<table class="dataTable entityTable">
	<thead>
		<tr>
			<th>{'DBStats_Table'|translate}</th>
			<th>{'DBStats_RowCount'|translate}</th>
			<th>{'DBStats_DataSize'|translate}</th>
			<th>{'DBStats_IndexSize'|translate}</th>
			<th>{'DBStats_TotalSize'|translate}</th>
		</tr>
	</thead>
	<tbody id="tables">
		{foreach from=$tablesStatus key=index item=table}
		<tr {if $table.Name == 'Total'}class="highlight" style="font-weight:bold;"{/if}>
			<td>
				{$table.Name}
			</td> 
			<td>
				{$table.Rows}
			</td> 
			<td>
				{$table.Data_length}b
			</td> 
			<td>
				{$table.Index_length}b
			</td> 
			<td>
				{$table.Total_length}b
			</td> 
		</tr>
		{/foreach}
	</tbody>
</table>

</div>

{include file="CoreAdminHome/templates/footer.tpl"}