X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-theme_import.php;h=58ef426283baaa85b6de63eb8dad51d2aa9787b6;hb=f5e2b428b0b5206b5758190d379d5c9d6bdce9e1;hp=11061669b6bbf64584bb274e0e996ea3acfb5c0b;hpb=b8aa17b98b99c27eafbdca0fa090bae63527da9a;p=mailer.git diff --git a/inc/modules/admin/what-theme_import.php b/inc/modules/admin/what-theme_import.php index 11061669b6..58ef426283 100644 --- a/inc/modules/admin/what-theme_import.php +++ b/inc/modules/admin/what-theme_import.php @@ -1,7 +1,7 @@ array(), // Unix name from filesystem - 'theme_name' => array(), // Title - 'theme_author' => array(), // Theme author's name - 'theme_email' => array(), // Author's email address - 'theme_url' => array(), // URL were you can download it from - 'theme_ver' => array(), // Version number of theme + 'theme_unix' => array(), // Unix name from filesystem + 'theme_name' => array(), // Title + 'theme_author' => array(), // Theme author's name + 'theme_email' => array(), // Author's email address + 'theme_url' => array(), // URL were you can download it from + 'theme_version' => array(), // Version number of theme ); // Read directory "themes" $includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); // Walk through all entries and add it -foreach ($includes as $INC) { +foreach ($includes as $inc) { // Get directory from it - $dir = basename(dirname($INC)); + $dir = basename(dirname($inc)); // Load include file - loadInclude($INC); + loadInclude($inc); // Add found theme to array $THEMES['theme_unix'][] = $dir; @@ -117,54 +117,46 @@ foreach ($includes as $INC) { $THEMES['theme_author'][] = $GLOBALS['theme_data']['author']; $THEMES['theme_email'][] = $GLOBALS['theme_data']['email']; $THEMES['theme_url'][] = $GLOBALS['theme_data']['url']; - $THEMES['theme_ver'][] = $GLOBALS['theme_data']['version']; + $THEMES['theme_version'][] = $GLOBALS['theme_data']['version']; } // END - while // Sort array by Uni* name array_pk_sort($THEMES, array('theme_name')); // Generate output lines for the template -$OUT = ''; $SW = 2; +$OUT = ''; foreach ($THEMES['theme_unix'] as $key => $unix) { // Already installed is default - $formContent = '
' . sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), $unix) . '
'; + $formContent = '
' . getMaskedMessage('ADMIN_THEME_ALREADY_INSTALLED', $unix) . '
'; // Check if current theme is already imported or not if (!ifThemeExists($unix)) { // Theme not installed - $formContent = LOAD_TEMPLATE('admin_theme_import_form', true, $unix); + $formContent = loadTemplate('admin_import_theme_form', true, $unix); } // END - if // Prepare content $content = array( - 'sw' => $SW, - 'unix' => $unix, - 'name' => $THEMES['theme_name'][$key], - 'email' => $THEMES['theme_email'][$key], - 'author' => $THEMES['theme_author'][$key], - 'link' => DEREFERER($THEMES['theme_url'][$key]), - 'url' => $THEMES['theme_url'][$key], - 'version' => $THEMES['theme_ver'][$key], - 'form' => $formContent + 'unix' => $unix, + 'theme_name' => $THEMES['theme_name'][$key], + 'theme_email' => $THEMES['theme_email'][$key], + 'theme_author' => $THEMES['theme_author'][$key], + 'theme_url' => $THEMES['theme_url'][$key], + 'theme_version' => $THEMES['theme_version'][$key], + 'form_content' => $formContent ); // Add row template - $OUT .= LOAD_TEMPLATE('admin_theme_import_row', true, $content); - - // Switch color - $SW = 3 - $SW; + $OUT .= loadTemplate('admin_import_theme_row', true, $content); } // END - foreach 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_import_theme_none', true, loadTemplate('admin_settings_saved', true, '{--ADMIN_NO_THEMES_FOUND--}')); } // END - if -// Set the generated list -define('__THEME_LIST', $OUT); - // Load template -LOAD_TEMPLATE('admin_theme_import'); +loadTemplate('admin_import_theme', false, $OUT); -// +// [EOF] ?>