From: Rupert Germann Date: Thu, 21 May 2009 22:27:59 +0000 (+0000) Subject: * Added feature #11074: Add more information to the list of extensions in EM import... X-Git-Tag: TYPO3_4-3-0alpha3~22 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/cdde2132baa18acd38efdc4d497b27aabceb0ecb * Added feature #11074: Add more information to the list of extensions in EM import mode (thanx to Steffen Müller) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@5468 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index 1d6502986f5b..c44cd869f098 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2009-05-22 Rupert Germann + * Added feature #11074: Add more information to the list of extensions in EM import mode (thanx to Steffen Müller) + 2009-05-21 Steffen Kamper * Reverted #11038 from rev 5451: this doesn't work as expected and has a lot negative side effects diff --git a/typo3/mod/tools/em/class.em_index.php b/typo3/mod/tools/em/class.em_index.php index 599f5dee1742..1ac2134931d5 100644 --- a/typo3/mod/tools/em/class.em_index.php +++ b/typo3/mod/tools/em/class.em_index.php @@ -2826,6 +2826,8 @@ EXTENSION KEYS: $cells[] = 'Doc:'; $cells[] = 'Type:'; } else { + $cells[] = 'labelInfo('Date of upload of the repository version.') . '>Upload date:'; + $cells[] = 'Author:'; $cells[] = 'labelInfo('Current version of the extension on this server. If colored red there is a newer version in repository! Then you should upgrade.').'>Cur. Ver:'; $cells[] = 'labelInfo('Current type of installation of the extension on this server.').'>Cur. Type:'; $cells[] = 'labelInfo('Number of downloads, all versions/this version').'>DL:'; @@ -2864,7 +2866,7 @@ EXTENSION KEYS: } // Extension title: - $cells[] = ''.t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['title']?$extInfo['EM_CONF']['title']:''.$extKey.'',40).''; + $cells[] = '' . t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['title'] ? $extInfo['EM_CONF']['title'] : '' . $extKey . '', 40) . ''; // Based on which display mode you will see more or less details: if (!$this->MOD_SETTINGS['display_details']) { @@ -2959,6 +2961,8 @@ EXTENSION KEYS: if (isset($inst_list[$extKey])) { if ($verDiff) $inst_curVer = ''.$GLOBALS['TBE_TEMPLATE']->rfw($inst_curVer).''; } + $cells[] = '' . t3lib_befunc::date($extInfo['EM_CONF']['lastuploaddate']) . ''; + $cells[] = '' . htmlspecialchars(t3lib_div::fixed_lgd_cs($extInfo['EM_CONF']['author'], $GLOBALS['BE_USER']->uc[titleLen])) . ''; $cells[] = ''.$inst_curVer.''; $cells[] = ''.$this->typeLabels[$inst_list[$extKey]['type']].(strlen($inst_list[$extKey]['doubleInstall'])>1?' '.$GLOBALS['TBE_TEMPLATE']->rfw($inst_list[$extKey]['doubleInstall']).'':'').''; $cells[] = ''.($extInfo['downloadcounter_all']?$extInfo['downloadcounter_all']:'  ').'/'.($extInfo['downloadcounter']?$extInfo['downloadcounter']:' ').'';