active export/import

This commit is contained in:
Roland Gruber 2020-07-12 09:48:49 +02:00
parent 21e7e4a95d
commit e070accf18
1 changed files with 4 additions and 6 deletions

View File

@ -80,12 +80,10 @@ $content = new htmlResponsiveRow();
$selfServiceLink->setCSSClasses(array('img-padding1 display-as-block')); $selfServiceLink->setCSSClasses(array('img-padding1 display-as-block'));
$topContent->add($selfServiceLink, 12); $topContent->add($selfServiceLink, 12);
} }
if (isDeveloperVersion(LAMVersion())) { $topContent->addVerticalSpacer('1rem');
$topContent->addVerticalSpacer('1rem'); $importExportLink = new htmlLink(_("Import and export configuration"), 'confImportExport.php', '../../graphics/confImportExport.png');
$importExportLink = new htmlLink(_("Import and export configuration"), 'confImportExport.php', '../../graphics/confImportExport.png'); $importExportLink->setCSSClasses(array('img-padding1 display-as-block'));
$importExportLink->setCSSClasses(array('img-padding1 display-as-block')); $topContent->add($importExportLink, 12);
$topContent->add($importExportLink, 12);
}
$content->add($topContent, 12); $content->add($topContent, 12);
$content->addVerticalSpacer('4rem'); $content->addVerticalSpacer('4rem');
?> ?>