-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EZP-32097: Expose EzSystemInfo in Admin UI and SystemInfoDumpCommand (#…
…69)
- Loading branch information
1 parent
f7e3e79
commit d1e2303
Showing
11 changed files
with
219 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
src/bundle/Resources/views/themes/admin/system_info/my_ibexa.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{% trans_default_domain "systeminfo" %} | ||
|
||
<!-- Tab name: {{ 'tab.name.ibexa'|trans|desc('My Ibexa') }} --> | ||
|
||
<section class="ez-fieldgroup"> | ||
<h2 class="ez-fieldgroup__name">{{ 'ibexa.product'|trans|desc('Product') }}</h2> | ||
<div class="ez-fieldgroup__content"> | ||
<table class="table ez-table ez-table--list ez-table--to-left"> | ||
<tbody> | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.name'|trans|desc('Name') }}</td> | ||
<td class="ez-table__cell">{{ info.name }}</td> | ||
</tr> | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.version'|trans|desc('Version') }}</td> | ||
<td class="ez-table__cell">{{ info.release }}</td> | ||
</tr> | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.is_trial'|trans|desc('Is Trial') }}</td> | ||
<td class="ez-table__cell"> | ||
<svg class="ez-icon ez-icon--small"> | ||
<use xlink:href="{{ ez_icon_path(info.isTrial ? 'checkmark' : 'discard') }}"></use> | ||
</svg> | ||
</td> | ||
</tr> | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.stability'|trans|desc('Stability') }}</td> | ||
<td class="ez-table__cell">{{ info.stability }}</td> | ||
</tr> | ||
{% if info.isEnterprise %} | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.eom'|trans|desc('End of Maintenance') }}*</td> | ||
<td class="ez-table__cell"> | ||
{{ info.endOfMaintenanceDate is empty ? '' : info.endOfMaintenanceDate|date('F Y') }} | ||
</td> | ||
</tr> | ||
<tr class="ez-table__row"> | ||
<td class="ez-table__cell">{{ 'ibexa.eol'|trans|desc('End of Life') }}*</td> | ||
<td class="ez-table__cell"> | ||
{{ info.endOfLifeDate is empty ? '' : info.endOfLifeDate|date('F Y') }} | ||
</td> | ||
</tr> | ||
<tr class="ez-table__row"> | ||
<td colspan="2"> | ||
<hr/> | ||
* {{ 'ibexa.read_more'|trans|desc('You can read more about Service Life for Ibexa DXP with a business license at') }} | ||
<a target="_blank" href="https://support.ibexa.co/Public/Service-Life"> | ||
https://support.ibexa.co/Public/Service-Life | ||
</a> | ||
</td> | ||
</tr> | ||
{% endif %} | ||
</tbody> | ||
</table> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.