1 <div class=
"server-tables">
2 <h3 class=
"window-subtitle">{'Permissions'|t}
</h3>
4 {
if="count($permissions)
> 0"}
6 <i class="fa fa-close fa-color-red
" aria-hidden="true
"></i>
7 {'There are permissions that need to be fixed.'|t}
12 <div class=
"center">{$value}
</div>
17 <i class=
"fa fa-check fa-color-green" aria-hidden=
"true"></i>
18 {'All read/write permissions are properly set.'|t}
22 <h3 class=
"window-subtitle">PHP
</h3>
25 <strong>{'Running PHP'|t} {$php_version}
</strong>
26 {
if="$php_has_reached_eol"}
27 <i class=
"fa fa-circle fa-color-orange" aria-label=
"hidden"></i><br>
28 {'End of life: '|t} {$php_eol}
30 <i class=
"fa fa-circle fa-color-green" aria-label=
"hidden"></i><br>
34 <table class=
"center">
37 <th>{'Extension'|t}
</th>
44 {
loop="$php_extensions"}
46 <td>{$value.name}
</td>
47 <td>{$value.desc}
</td>
48 <td>{$value.required ? t('Required') : t('Optional')}
</td>
51 {$
classLoaded="fa-color-green"}
52 {$strLoaded=t('Loaded')}
54 {$strLoaded=t('Not loaded')}
55 {
if="$value.required"}
56 {$
classLoaded="fa-color-red"}
58 {$
classLoaded="fa-color-orange"}
62 <i class=
"fa fa-circle {$classLoaded}" aria-label=
"{$strLoaded}" title=
"{$strLoaded}"></i>