From 790f6b3bb6e4bf888a7fdb36f87a763cdb8ca450 Mon Sep 17 00:00:00 2001 From: patdenice Date: Sat, 23 Apr 2011 12:48:05 +0000 Subject: Change tabsheet place for plugins, themes and languages. Plugins, themes and languages use same update page. git-svn-id: http://piwigo.org/svn/trunk@10594 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/themes_update.php | 133 ------------------------------------------------ 1 file changed, 133 deletions(-) delete mode 100644 admin/themes_update.php (limited to 'admin/themes_update.php') diff --git a/admin/themes_update.php b/admin/themes_update.php deleted file mode 100644 index 7909e47e0..000000000 --- a/admin/themes_update.php +++ /dev/null @@ -1,133 +0,0 @@ -set_tabsheet($page['page']); - -//-----------------------------------------------------------automatic upgrade -if (isset($_GET['theme']) and isset($_GET['revision'])) -{ - if (!is_webmaster()) - { - array_push($page['errors'], l10n('Webmaster status is required.')); - } - else - { - check_pwg_token(); - - $theme_id = $_GET['theme']; - $revision = $_GET['revision']; - - $upgrade_status = $themes->extract_theme_files('upgrade', $revision, $theme_id); - - switch ($upgrade_status) - { - case 'ok': - array_push($page['infos'], - sprintf( - l10n('%s has been successfully upgraded.'), - $themes->fs_themes[$_GET['theme']]['name'])); - break; - - case 'temp_path_error': - array_push($page['errors'], l10n('Can\'t create temporary file.')); - break; - - case 'dl_archive_error': - array_push($page['errors'], l10n('Can\'t download archive.')); - break; - - case 'archive_error': - array_push($page['errors'], l10n('Can\'t read or extract archive.')); - break; - - default: - array_push($page['errors'], - sprintf(l10n('An error occured during extraction (%s).'), $upgrade_status) - ); - } - - $themes->themes(); - $template->delete_compiled_templates(); - } -} - -// +-----------------------------------------------------------------------+ -// | start template output | -// +-----------------------------------------------------------------------+ -$template->set_filenames(array('themes' => 'themes_update.tpl')); - -if ($themes->get_server_themes()) -{ - foreach($themes->fs_themes as $theme_id => $fs_theme) - { - if (isset($fs_theme['extension']) - and isset($themes->server_themes[$fs_theme['extension']])) - { - $theme_info = $themes->server_themes[$fs_theme['extension']]; - - if (!$themes->theme_version_compare($fs_theme['version'], $theme_info['revision_name'])) - { - $url_auto_update = $base_url - . '&revision=' . $theme_info['revision_id'] - . '&theme=' . $theme_id - . '&pwg_token='.get_pwg_token() - ; - - $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' => 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'], - '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' - ) - ); - } - } - } -} -else -{ - $template->assign('SERVER_ERROR', true); - array_push($page['errors'], l10n('Can\'t connect to server.')); -} - -$template->assign_var_from_handle('ADMIN_CONTENT', 'themes'); -?> \ No newline at end of file -- cgit v1.2.3