File: systemCheckPage.twig

package info (click to toggle)
matomo 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 95,068 kB
  • sloc: php: 289,425; xml: 127,249; javascript: 112,130; python: 202; sh: 178; makefile: 20; sql: 10
file content (20 lines) | stat: -rw-r--r-- 1,127 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends 'admin.twig' %}
{% set title %}{{ 'Installation_SystemCheck'|translate }}{% endset %}

{% block content %}

<div
    vue-entry="Installation.SystemCheckPage"
    error-type="{{ constant('Piwik\\Plugins\\Diagnostics\\Diagnostic\\DiagnosticResult::STATUS_ERROR')|json_encode }}"
    warning-type="{{ constant('Piwik\\Plugins\\Diagnostics\\Diagnostic\\DiagnosticResult::STATUS_WARNING')|json_encode }}"
    informational-type="{{ constant('Piwik\\Plugins\\Diagnostics\\Diagnostic\\DiagnosticResult::STATUS_INFORMATIONAL')|json_encode }}"
    system-check-info="{{ systemCheckInfo|json_encode }}"
    mandatory-results="{{ diagnosticReport.getMandatoryDiagnosticResults()|json_encode }}"
    optional-results="{{ diagnosticReport.getOptionalDiagnosticResults()|json_encode }}"
    informational-results="{{ diagnosticReport.getInformationalResults()|json_encode }}"
    is-installation="{{ isInstallation|default(false)|json_encode }}"
    has-errors="{{ diagnosticReport.hasErrors()|default(null)|json_encode }}"
    has-warnings="{{ diagnosticReport.hasWarnings()|default(null)|json_encode }}"
></div>

{% endblock %}