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

integrityDetails.tpl « templates « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edac941868c03128690c7b4c07ca1536673887f9 (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
{if !isset($warningMessages)}
{assign var=warningMessages value=$infos.integrityErrorMessages}
{/if}
<div id="integrity-results" title="{'Installation_SystemCheckFileIntegrity'|translate}" style="display:none; font-size: 62.5%;">
	<table>
	{foreach from=$warningMessages item=msg}
		<tr><td>{$msg}</td></tr>
	{/foreach}
	</table>
</div>
<script type="text/javascript">
{literal}<!--
$(function() {
	$("#integrity-results").dialog({
		bgiframe: true,
		modal: true,
		autoOpen: false,
		width: 600,
		buttons: {
			Ok: function() {
			$(this).dialog('close');
			}
		}
	});
});
$('#more-results').click(function() {
	$('#integrity-results').dialog('open');
})
.hover(
	function(){ 
		$(this).addClass("ui-state-hover"); 
	},
	function(){ 
		$(this).removeClass("ui-state-hover"); 
	}
).mousedown(function(){
	$(this).addClass("ui-state-active"); 
})
.mouseup(function(){
		$(this).removeClass("ui-state-active");
});
//-->{/literal}
</script>