X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=302558b4da72351b0cae7faed53947024bf8893c;hb=ccf34a2a92d80d01debd84b4b6e1f294d8f90cce;hp=7cfa35b394a17713241cdd6fe1f7a76c929eed12;hpb=d8148e3f1f3a6762b2e786dbe99ada269dcf2ea0;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index 7cfa35b394..302558b4da 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] ?>