From 2fcd11c28e5d58c1b5a0351fc8bf792abb0a5da4 Mon Sep 17 00:00:00 2001 From: patdenice Date: Thu, 3 Mar 2011 11:54:46 +0000 Subject: Improve display for plugins and themes update page. git-svn-id: http://piwigo.org/svn/trunk@9493 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes_update.php | 48 ++++++++++++------------------------------------ 1 file changed, 12 insertions(+), 36 deletions(-) (limited to 'admin/themes_update.php') diff --git a/admin/themes_update.php b/admin/themes_update.php index c68068737..8cb2fa004 100644 --- a/admin/themes_update.php +++ b/admin/themes_update.php @@ -97,59 +97,35 @@ if ($themes->get_server_themes()) { $theme_info = $themes->server_themes[$fs_theme['extension']]; - list($date, ) = explode(' ', $theme_info['revision_date']); - - $ext_desc = ''.l10n('Downloads').': '.$theme_info['extension_nb_downloads']."\r\n" - ."\r\n" - .$theme_info['extension_description']; - - $rev_desc = ''.l10n('Version').': '.$theme_info['revision_name']."\r\n" - .''.l10n('Released on').': '.$date."\r\n" - .''.l10n('Downloads').': '.$theme_info['revision_nb_downloads']."\r\n" - ."\r\n" - .$theme_info['revision_description']; - - if ($themes->theme_version_compare($fs_theme['version'], $theme_info['revision_name'])) - { - // Plugin is up to date - $template->append('themes_uptodate', array( - 'URL' => PEM_URL.'/extension_view.php?eid='.$theme_info['extension_id'], - 'NAME' => $fs_theme['name'], - 'EXT_DESC' => $ext_desc, - 'VERSION' => $fs_theme['version'], - 'VER_DESC' => $rev_desc)); - } - else + if (!$themes->theme_version_compare($fs_theme['version'], $theme_info['revision_name'])) { - // Plugin need upgrade $url_auto_update = $base_url . '&revision=' . $theme_info['revision_id'] . '&theme=' . $theme_id . '&pwg_token='.get_pwg_token() ; - $template->append('themes_not_uptodate', array( + $template->append('update_themes', array( + 'ID' => $theme_info['extension_id'], 'EXT_NAME' => $fs_theme['name'], 'EXT_URL' => PEM_URL.'/extension_view.php?eid='.$theme_info['extension_id'], - 'EXT_DESC' => $ext_desc, - 'VERSION' => $fs_theme['version'], + 'EXT_DESC' => trim($theme_info['extension_description'], " \n\r"), + 'REV_DESC' => trim($theme_info['revision_description'], " \n\r"), + 'CURRENT_VERSION' => $fs_theme['version'], 'NEW_VERSION' => $theme_info['revision_name'], - 'NEW_VER_DESC' => $rev_desc, + 'AUTHOR' => $theme_info['author_name'], + 'DOWNLOADS' => $theme_info['extension_nb_downloads'], 'URL_UPDATE' => $url_auto_update, - 'URL_DOWNLOAD' => $theme_info['download_url'] . '&origin=piwigo_download')); + 'URL_DOWNLOAD' => $theme_info['download_url'] . '&origin=piwigo_download' + ) + ); } } - else - { - // Can't check theme - $template->append('themes_cant_check', array( - 'NAME' => $fs_theme['name'], - 'VERSION' => $fs_theme['version'])); - } } } else { + $template->assign('SERVER_ERROR', true); array_push($page['errors'], l10n('Can\'t connect to server.')); } -- cgit v1.2.3