data['modules']; $active = $this->data['active']; $installed = $this->data['installed']; $id = $this->data['id']; $module = $modules[$id] ?? new ModuleInfo(''); if (isset($installed[$id])) { echo $this->data['nav']->render(); } // @todo If no id is specified in the url this page looks horrible. Either clean up or return 404 page or something similar. ?>
printHtml($module->getExternalName()); ?>
getHtml('Name'); ?> printHtml($module->getExternalName()); ?>
getHtml('Version'); ?> printHtml($module->getVersion()); ?>
getHtml('CreatedBy'); ?> printHtml($module->get()['creator']['name'] ?? ''); ?>
getHtml('Website'); ?> printHtml($module->get()['creator']['website'] ?? ''); ?>
data['introduction'])) : ?>
data['introduction']; ?>
data['info']) && !empty($this->data['info']['dependencies'])) : ?>
getHtml('Dependencies'); ?>
    data['info']['dependencies'] as $name => $version) : $length = \strlen($name); $result = ''; for ($i = 0; $i < $length; ++$i) { if ($i > 0 && \ctype_upper($name[$i]) && \ctype_lower($name[$i - 1])) { $result .= ' '; } $result .= $name[$i]; } ?>
  • printHtml($result); ?>
data['info']) && !empty($this->data['info']['providing'])) : ?>
getHtml('Providing'); ?>
    data['info']['providing'] as $name => $version) : $length = \strlen($name); $result = ''; for ($i = 0; $i < $length; ++$i) { if ($i > 0 && \ctype_upper($name[$i]) && \ctype_lower($name[$i - 1])) { $result .= ' '; } $result .= $name[$i]; } ?>
  • printHtml($result); ?>