Issue #3079738 by lauriii, saschaeggi, webchick, xjm, andrewmacpherson, shimpy, effulgentsia, Wim Leers, DyanneNova, svettes, rainbreaw, fhaeberle, ckrina, AaronMcHale, justafish, catch, charlieweb82, AntoineH, lot007, pzajacz, kostyashupenko, jasonbarrie, antonellasevero, finnsky, worldlinemine, bnjmnm, RobLoach, Dennis Cohn, huzooka, Archita Arora, joachim, jrockowitz, benjifisher, shaal, Gábor Hojtsy, quiron, L2G2, ccasals, hampercm, if-jds, abhisekmazumdar, Kami Amiga, pivica, zrpnr, BrightBold, imalabya, jhedstrom, Neslee Canil Pinto, maliknaik, junaidmasoodi, Maithri Shetty, pranav73, mandclu, modulist, nod_, philosurfer, phenaproxima, mherchel, mlncn, rafuel92, leymannx, kiboman, Swapnil_Kotwal, anevins, evankay, rfmarcelino, thamas, brianperry, idebr, joelpittet, boulaffasae, alexpott, volkerk, DuneBL, Eli-T, Mahenkvyas22: Add Claro administration theme to core
2019-10-13 20:42:58 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Theme override for status report general info.
|
|
|
|
*
|
|
|
|
* Available variables:
|
|
|
|
* - drupal: The status of Drupal installation:
|
|
|
|
* - value: The current status of Drupal installation.
|
|
|
|
* - description: The description for current status of Drupal installation.
|
|
|
|
* - cron: The status of cron:
|
|
|
|
* - value: The current status of cron.
|
|
|
|
* - description: The description for current status of cron.
|
|
|
|
* - cron.run_cron: An array to render a button for running cron.
|
|
|
|
* - database_system: The status of database system:
|
|
|
|
* - value: The current status of database sytem.
|
|
|
|
* - description: The description for current status of cron.
|
|
|
|
* - database_system_version: The info about current database version:
|
|
|
|
* - value: The current version of database.
|
|
|
|
* - description: The description for current version of database.
|
|
|
|
* - php: The current version of PHP:
|
|
|
|
* - value: The status of currently installed PHP version.
|
|
|
|
* - description: The description for current installed PHP version.
|
|
|
|
* - php_memory_limit: The info about current PHP memory limit:
|
|
|
|
* - value: The status of currently set PHP memory limit.
|
|
|
|
* - description: The description for currently set PHP memory limit.
|
|
|
|
* - webserver: The info about currently installed web server:
|
|
|
|
* - value: The status of currently installed web server.
|
|
|
|
* - description: The description for the status of currently installed web
|
|
|
|
* server.
|
|
|
|
*/
|
|
|
|
#}
|
|
|
|
<div class="system-status-general-info">
|
|
|
|
<h2 class="system-status-general-info__header">{{ 'General System Information'|t }}</h2>
|
|
|
|
<div class="system-status-general-info__items">
|
|
|
|
<div class="system-status-general-info__item">
|
2020-05-21 18:23:01 +00:00
|
|
|
<span class="system-status-general-info__item-icon system-status-general-info__item-icon--drupal"></span>
|
Issue #3079738 by lauriii, saschaeggi, webchick, xjm, andrewmacpherson, shimpy, effulgentsia, Wim Leers, DyanneNova, svettes, rainbreaw, fhaeberle, ckrina, AaronMcHale, justafish, catch, charlieweb82, AntoineH, lot007, pzajacz, kostyashupenko, jasonbarrie, antonellasevero, finnsky, worldlinemine, bnjmnm, RobLoach, Dennis Cohn, huzooka, Archita Arora, joachim, jrockowitz, benjifisher, shaal, Gábor Hojtsy, quiron, L2G2, ccasals, hampercm, if-jds, abhisekmazumdar, Kami Amiga, pivica, zrpnr, BrightBold, imalabya, jhedstrom, Neslee Canil Pinto, maliknaik, junaidmasoodi, Maithri Shetty, pranav73, mandclu, modulist, nod_, philosurfer, phenaproxima, mherchel, mlncn, rafuel92, leymannx, kiboman, Swapnil_Kotwal, anevins, evankay, rfmarcelino, thamas, brianperry, idebr, joelpittet, boulaffasae, alexpott, volkerk, DuneBL, Eli-T, Mahenkvyas22: Add Claro administration theme to core
2019-10-13 20:42:58 +00:00
|
|
|
<div class="system-status-general-info__item-details">
|
|
|
|
<h3 class="system-status-general-info__item-title">{{ 'Drupal Version'|t }}</h3>
|
|
|
|
{{ drupal.value }}
|
|
|
|
{% if drupal.description %}
|
|
|
|
<div class="description">{{ drupal.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="system-status-general-info__item">
|
|
|
|
<span class="system-status-general-info__item-icon system-status-general-info__item-icon--clock"></span>
|
|
|
|
<div class="system-status-general-info__item-details">
|
|
|
|
<h3 class="system-status-general-info__item-title">{{ 'Last Cron Run'|t }}</h3>
|
|
|
|
{{ cron.value }}
|
|
|
|
{% if cron.run_cron %}
|
|
|
|
<div class="system-status-general-info__run-cron">{{ cron.run_cron }}</div>
|
|
|
|
{% endif %}
|
|
|
|
{% if cron.description %}
|
|
|
|
<div class="system-status-general-info__description">{{ cron.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="system-status-general-info__item">
|
|
|
|
<span class="system-status-general-info__item-icon system-status-general-info__item-icon--server"></span>
|
|
|
|
<div class="system-status-general-info__item-details">
|
|
|
|
<h3 class="system-status-general-info__item-title">{{ 'Web Server'|t }}</h3>
|
|
|
|
{{ webserver.value }}
|
|
|
|
{% if webserver.description %}
|
|
|
|
<div class="description">{{ webserver.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="system-status-general-info__item">
|
|
|
|
<span class="system-status-general-info__item-icon system-status-general-info__item-icon--php"></span>
|
|
|
|
<div class="system-status-general-info__item-details">
|
|
|
|
<h3 class="system-status-general-info__item-title">{{ 'PHP'|t }}</h3>
|
|
|
|
<h4 class="system-status-general-info__sub-item-title">{{ 'Version'|t }}</h4>{{ php.value }}
|
|
|
|
{% if php.description %}
|
|
|
|
<div class="description">{{ php.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h4 class="system-status-general-info__sub-item-title">{{ 'Memory limit'|t }}</h4>{{ php_memory_limit.value }}
|
|
|
|
{% if php_memory_limit.description %}
|
|
|
|
<div class="description">{{ php_memory_limit.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="system-status-general-info__item">
|
|
|
|
<span class="system-status-general-info__item-icon system-status-general-info__item-icon--database"></span>
|
|
|
|
<div class="system-status-general-info__item-details">
|
|
|
|
<h3 class="system-status-general-info__item-title">{{ 'Database'|t }}</h3>
|
|
|
|
<h4 class="system-status-general-info__sub-item-title">{{ 'Version'|t }}</h4>{{ database_system_version.value }}
|
|
|
|
{% if database_system_version.description %}
|
|
|
|
<div class="description">{{ database_system_version.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<h4 class="system-status-general-info__sub-item-title">{{ 'System'|t }}</h4>{{ database_system.value }}
|
|
|
|
{% if database_system.description %}
|
|
|
|
<div class="description">{{ database_system.description }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|