X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=0e91fc4cf76706253e1c342fc67639700d8fc1a1;hb=96dfdd6b8e6a56d6594c3525e5fd2a066697a6de;hp=cde282ba93e120f8cdd01ba672319ccc6b6de8db;hpb=ab92fb7241d00636b0eb940f147449758820cba1;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index cde282ba93..0e91fc4cf7 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -1,7 +1,7 @@ $unix) { + // Already installed is default + $formContent = '
' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '
'; + // Check if current theme is already imported or not - if (THEME_CHECK_EXIST($unix)) { - // Already installed - $FOUND = "
{--ADMIN_THEME_ALREADY_INSTALLED--}
"; - } else { + if (!ifThemeExists($unix)) { // Theme not installed - $FOUND = "
- - -
"; - } + $formContent = loadTemplate('admin_theme_import_form', true, $unix); + } // END - if - // Add row - $OUT .= " - ".$unix." - ".$THEMES['theme_name'][$key]." - - ".$THEMES['theme_author'][$key]." - - - ".$THEMES['theme_url'][$key]." - - v".$THEMES['theme_ver'][$key]." - - ".$FOUND." - -\n"; + // Prepare content + $content = array( + 'sw' => $SW, + 'unix' => $unix, + 'name' => $THEMES['theme_name'][$key], + 'email' => $THEMES['theme_email'][$key], + 'author' => $THEMES['theme_author'][$key], + 'link' => generateDerefererUrl($THEMES['theme_url'][$key]), + 'url' => $THEMES['theme_url'][$key], + 'version' => $THEMES['theme_ver'][$key], + 'form' => $formContent + ); + + // Add row template + $OUT .= loadTemplate('admin_theme_import_row', true, $content); // Switch color $SW = 3 - $SW; -} +} // END - foreach if (empty($OUT)) { // No themes found??? - $OUT .= " - - ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('ADMIN_NO_THEMES_FOUND'))." - -\n"; + $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); } // END - if -define('__THEME_LIST', $OUT); // Load template -LOAD_TEMPLATE("admin_theme_import"); +loadTemplate('admin_theme_import', false, $OUT); -// +// [EOF] ?>