From cdde2132baa18acd38efdc4d497b27aabceb0ecb Mon Sep 17 00:00:00 2001 From: Rupert Germann Date: Thu, 21 May 2009 22:27:59 +0000 Subject: [PATCH] =?utf8?q?*=20Added=20feature=20#11074:=20Add=20more=20inf?= =?utf8?q?ormation=20to=20the=20list=20of=20extensions=20in=20EM=20import?= =?utf8?q?=20mode=20(thanx=20to=20Steffen=20M=C3=BCller)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@5468 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 3 +++ typo3/mod/tools/em/class.em_index.php | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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']:' ').''; -- 2.20.1