make a list of plugins

This commit is contained in:
Evan Prodromou 2010-01-07 17:28:31 -08:00
parent ff930d2555
commit 9fc63a56a2
1 changed files with 5 additions and 0 deletions

View File

@ -158,7 +158,10 @@ class VersionAction extends Action
if (count($this->pluginVersions)) {
$this->element('h2', null, _('Plugins'));
$this->elementStart('ul');
foreach ($this->pluginVersions as $plugin) {
$this->elementStart('li');
$this->elementStart('dl');
$this->element('dt', null, _('Name'));
if (array_key_exists('homepage', $plugin)) {
@ -185,7 +188,9 @@ class VersionAction extends Action
$this->element('dd', null, $plugin['description']);
}
$this->elementEnd('dl');
$this->elementEnd('li');
}
$this->elementEnd('ul');
}
}