X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=0e91fc4cf76706253e1c342fc67639700d8fc1a1;hb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;hp=f3c3dd0f97490f3b87ddeca8e23a2d04435cf69c;hpb=77cdaff2afb97ed32985ced906a3a95ee078c2ef;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index f3c3dd0f97..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 - $FOUND = "
{--ADMIN_THEME_ALREADY_INSTALLED--}
"; + $formContent = '
' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '
'; // Check if current theme is already imported or not - if (!THEME_CHECK_EXIST($unix)) { + if (!ifThemeExists($unix)) { // Theme not installed - $FOUND = LOAD_TEMPLATE("admin_theme_import_form", true, $unix); + $formContent = loadTemplate('admin_theme_import_form', true, $unix); } // END - if // Prepare content @@ -135,14 +143,14 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { 'name' => $THEMES['theme_name'][$key], 'email' => $THEMES['theme_email'][$key], 'author' => $THEMES['theme_author'][$key], - 'link' => DEREFERER($THEMES['theme_url'][$key]), + 'link' => generateDerefererUrl($THEMES['theme_url'][$key]), 'url' => $THEMES['theme_url'][$key], 'version' => $THEMES['theme_ver'][$key], - 'form' => $FOUND + 'form' => $formContent ); // Add row template - $OUT .= LOAD_TEMPLATE("admin_theme_import_row", true, $content); + $OUT .= loadTemplate('admin_theme_import_row', true, $content); // Switch color $SW = 3 - $SW; @@ -150,14 +158,11 @@ foreach ($THEMES['theme_unix'] as $key => $unix) { if (empty($OUT)) { // No themes found??? - $OUT .= LOAD_TEMPLATE("admin_theme_import_none", true, LOAD_TEMPLATE("admin_settings_saved", true, getMessage('ADMIN_NO_THEMES_FOUND'))); + $OUT .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); } // END - if -// Set the generated list -define('__THEME_LIST', $OUT); - // Load template -LOAD_TEMPLATE("admin_theme_import"); +loadTemplate('admin_theme_import', false, $OUT); -// +// [EOF] ?>