-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
051e1f7
commit e154eab
Showing
20 changed files
with
188 additions
and
168 deletions.
There are no files selected for viewing
11 changes: 1 addition & 10 deletions
11
resources/views/admin/system/information/_includes/php-extensions.blade.php
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 |
---|---|---|
@@ -1,10 +1 @@ | ||
<div class="box"> | ||
<div class="box-header with-border"> | ||
<h2 class="box-title">PHP Extensions</h2> | ||
</div> | ||
<div class="box-body"> | ||
@foreach(get_loaded_extensions() as $extension) | ||
<span class="label label-default">{{ $extension }}</span> | ||
@endforeach | ||
</div> | ||
</div> | ||
|
38 changes: 38 additions & 0 deletions
38
resources/views/admin/system/information/_includes/php-info.blade.php
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,38 @@ | ||
<div class="box"> | ||
<div class="box-header"> | ||
<h2 class="box-title">PHP</h2> | ||
</div> | ||
<div class="box-body no-padding"> | ||
<table class="table table-condensed table-hover no-margin"> | ||
<tr> | ||
<th>Version</th> | ||
<td class="text-right"> | ||
<span class="label label-primary">{{ $phpInfo['version'] }}</span> | ||
</td> | ||
</tr> | ||
@foreach($phpInfo['requirements'] as $requirement => $enabled) | ||
<tr> | ||
<th>{{ ucfirst($requirement) }} Ext</th> | ||
<td class="text-right"> | ||
@if ($enabled) | ||
<span class="label label-success"><i class="fa fa-fw fa-check"></i></span> | ||
@else | ||
<span class="label label-danger"><i class="fa fa-fw fa-times"></i></span> | ||
@endif | ||
</td> | ||
</tr> | ||
@endforeach | ||
</table> | ||
</div> | ||
</div> | ||
|
||
<div class="box"> | ||
<div class="box-header with-border"> | ||
<h2 class="box-title">PHP Loaded Extensions</h2> | ||
</div> | ||
<div class="box-body"> | ||
@foreach($phpInfo['extensions'] as $extension) | ||
<span class="label label-default">{{ $extension }}</span> | ||
@endforeach | ||
</div> | ||
</div> |
28 changes: 0 additions & 28 deletions
28
resources/views/admin/system/information/_includes/server-requirements.blade.php
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
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
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
Oops, something went wrong.