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" $handle = opendir(constant('PATH')."theme/") or app_die(__FILE__, __LINE__, "Cannot read themes dir!"); while ($dir = readdir($handle)) { // Construct absolute theme.php file name $INC = sprintf("theme/%s/theme.php", $dir); // Test it... if (($dir != ".") && ($dir != "..") && (INCLUDE_READABLE($INC))) { // Found a valid directory so let's load it's theme.php file LOAD_INC($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 - if } // END - while // Close directory closedir($handle); // 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 $FOUND = "
{--ADMIN_THEME_ALREADY_INSTALLED--}
"; // Check if current theme is already imported or not if (!THEME_CHECK_EXIST($unix)) { // Theme not installed $FOUND = LOAD_TEMPLATE("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' => DEREFERER($THEMES['theme_url'][$key]), 'url' => $THEMES['theme_url'][$key], 'version' => $THEMES['theme_ver'][$key], 'form' => $FOUND ); // Add row template $OUT .= LOAD_TEMPLATE("admin_theme_import_row", true, $content); // Switch color $SW = 3 - $SW; } // 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'))); } // END - if // Set the generated list define('__THEME_LIST', $OUT); // Load template LOAD_TEMPLATE("admin_theme_import"); // ?>