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 ); // Read directory "themes" $includes = getArrayFromDirectory('theme/', '', false, true, array('css', 'images')); // Walk through all entries and add it foreach ($includes as $inc) { // Get directory from it $dir = basename(dirname($inc)); // Load include file loadInclude($inc); // Add found theme to array $THEMES['theme_unix'][] = $dir; $THEMES['theme_name'][] = $GLOBALS['theme_data']['name']; $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']; } // END - while // Sort array by Uni* name array_pk_sort($THEMES, array('theme_name')); // Generate output lines for the template $OUT = ''; $SW = 2; foreach ($THEMES['theme_unix'] as $key => $unix) { // Already installed is default $formContent = '
' . sprintf(getMessage('ADMIN_THEME_ALREADY_INSTALLED'), $unix) . '
'; // Check if current theme is already imported or not if (!ifThemeExists($unix)) { // Theme not installed $formContent = loadTemplate('admin_theme_import_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' => 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 .= loadTemplate('admin_theme_import_none', true, loadTemplate('admin_settings_saved', true, getMessage('ADMIN_NO_THEMES_FOUND'))); } // END - if // Load template loadTemplate('admin_theme_import', false, $OUT); // [EOF] ?>