Skip to content

Commit

Permalink
Further work to pull request 9257 CRM-16243 - Extension API - Automat…
Browse files Browse the repository at this point in the history
…ically enable dependencies

Also adjusted interface to show the needed dependencies.
  • Loading branch information
JohnFF committed Oct 9, 2017
1 parent ce63c32 commit 445c74e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions templates/CRM/Admin/Page/ExtensionDetails.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,12 @@
<td>
{foreach from=$extension.requires item=ext}
{if array_key_exists($ext, $localExtensionRows)}
{$localExtensionRows.$ext.name} (already downloaded - {$ext})
{$localExtensionRows.$ext.name}
{elseif array_key_exists($ext, $remoteExtensionRows)}
{$remoteExtensionRows.$ext.name} (not downloaded - {$ext})
{$remoteExtensionRows.$ext.name} (not downloaded)
{else}
{$ext} {ts}(not available){/ts}
{$ext} (not installed locally or available remotely)
{/if}
<br/>
{/foreach}
</td>
</tr>
Expand Down

0 comments on commit 445c74e

Please sign in to comment.