argc > 2) { // @TODO: Replace with parameter from router $theme = $a->argv[2]; $theme = Strings::sanitizeFilePathItem($theme); if (is_file("view/theme/$theme/config.php")) { require_once "view/theme/$theme/config.php"; if (function_exists('theme_admin_post')) { theme_admin_post($a); } } info(DI::l10n()->t('Theme settings updated.')); if (DI::mode()->isAjax()) { return; } DI::baseUrl()->redirect('admin/themes/' . $theme); } } public static function content(array $parameters = []) { parent::content($parameters); $a = DI::app(); if ($a->argc > 2) { // @TODO: Replace with parameter from router $theme = $a->argv[2]; $theme = Strings::sanitizeFilePathItem($theme); if (!is_dir("view/theme/$theme")) { notice(DI::l10n()->t("Item not found.")); return ''; } $isEnabled = in_array($theme, Theme::getAllowedList()); if ($isEnabled) { $status = "on"; $action = DI::l10n()->t("Disable"); } else { $status = "off"; $action = DI::l10n()->t("Enable"); } if (!empty($_GET['action']) && $_GET['action'] == 'toggle') { parent::checkFormSecurityTokenRedirectOnError('/admin/themes', 'admin_themes', 't'); if ($isEnabled) { Theme::uninstall($theme); info(DI::l10n()->t('Theme %s disabled.', $theme)); } elseif (Theme::install($theme)) { info(DI::l10n()->t('Theme %s successfully enabled.', $theme)); } else { info(DI::l10n()->t('Theme %s failed to install.', $theme)); } DI::baseUrl()->redirect('admin/themes/' . $theme); } $readme = null; if (is_file("view/theme/$theme/README.md")) { $readme = Markdown::convert(file_get_contents("view/theme/$theme/README.md"), false); } elseif (is_file("view/theme/$theme/README")) { $readme = "
" . file_get_contents("view/theme/$theme/README") . "";
}
$admin_form = '';
if (is_file("view/theme/$theme/config.php")) {
require_once "view/theme/$theme/config.php";
if (function_exists('theme_admin')) {
$admin_form = '';
}
}
$screenshot = [Theme::getScreenshot($theme), DI::l10n()->t('Screenshot')];
if (!stristr($screenshot[0], $theme)) {
$screenshot = null;
}
$t = Renderer::getMarkupTemplate('admin/addons/details.tpl');
return Renderer::replaceMacros($t, [
'$title' => DI::l10n()->t('Administration'),
'$page' => DI::l10n()->t('Themes'),
'$toggle' => DI::l10n()->t('Toggle'),
'$settings' => DI::l10n()->t('Settings'),
'$baseurl' => DI::baseUrl()->get(true),
'$addon' => $theme,
'$status' => $status,
'$action' => $action,
'$info' => Theme::getInfo($theme),
'$function' => 'themes',
'$admin_form' => $admin_form,
'$str_author' => DI::l10n()->t('Author: '),
'$str_maintainer' => DI::l10n()->t('Maintainer: '),
'$screenshot' => $screenshot,
'$readme' => $readme,
'$form_security_token' => parent::getFormSecurityToken("admin_themes"),
]);
}
DI::baseUrl()->redirect('admin/themes');
}
}