Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Show Plugin Version #368

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions OpenVBX/views/page/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<td style="width: 120px;">Description</td>
<td><?php echo $info['description']; ?></td>
<tr>
<tr class="items-row">
<td style="width: 120px;">Version</td>
<td><?php echo $info['version']; ?></td>
<tr>
<tr class="items-row">
<td style="width: 120px;">Author</td>
<td><?php echo $info['author']; ?></td>
Expand Down
2 changes: 2 additions & 0 deletions OpenVBX/views/settings/site-plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<thead>
<tr class="items-head">
<th class="plugin-name">Name</th>
<th class="plugin-version">Version</th>
<th class="plugin-author">Author</th>
<th class="plugin-desc">Description</th>
<th class="plugin-path">Installed Path</th>
Expand All @@ -14,6 +15,7 @@
<?php foreach($plugins as $plugin): ?>
<tr class="items-row">
<td><?php echo $plugin['name'] ?></td>
<td><?php echo $plugin['version'] ?></td>
<td><?php echo $plugin['author'] ?></td>
<td><?php echo $plugin['description'] ?></td>
<td><?php echo $plugin['plugin_path'] ?></td>
Expand Down
4 changes: 4 additions & 0 deletions assets/c/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,10 @@ pre {
width: 15%;
}

#settings-plugins .plugin-version {
width: 5%;
}

#settings-plugins .plugin-author {
width: 15%;
}
Expand Down
2 changes: 2 additions & 0 deletions assets/c/master.css
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,8 @@ button.inline-button { float: left; margin: 0 10px 0 0 !important;}

#settings-plugins .plugin-name { width: 15%;}

#settings-plugins .plugin-version { width: 5%;}

#settings-plugins .plugin-author { width: 15%;}

#settings-plugins .plugin-desc { width: 22%;}
Expand Down