Index: typo3/sysext/about/mod/index.php --- typo3/sysext/about/mod/index.php Base (BASE) +++ typo3/sysext/about/mod/index.php Locally Modified (Based On LOCAL) @@ -56,13 +56,6 @@ $LANG->includeLLFile('EXT:lang/locallang_mod_help_about.xml'); $BE_USER->modAccess($MCONF,1); - - - - - - - /** * Script Class for the Help > About module * @@ -73,14 +66,12 @@ class SC_mod_help_about_index { // Internal, dynamic: - var $MCONF=array(); - var $MOD_MENU=array(); - var $MOD_SETTINGS=array(); + var $MCONF = array(); + var $MOD_MENU = array(); + var $MOD_SETTINGS = array(); var $content; - - /** * Main function, producing the module output. * In this case, the module output is a very simple screen telling the version of TYPO3 and that's basically it... @@ -96,22 +87,22 @@ // ************************** // Main // ************************** - #$TBE_TEMPLATE->bgColor = '#cccccc'; + $TBE_TEMPLATE->backPath = $GLOBALS['BACK_PATH']; - $minorText = sprintf($LANG->getLL('minor'), 'TYPO3 Ver. '.htmlspecialchars(TYPO3_version).', Copyright © '.htmlspecialchars(TYPO3_copyright_year), 'Kasper Skårhøj'); + $minorText = sprintf($LANG->getLL('minor'), 'TYPO3 Ver. ' . htmlspecialchars(TYPO3_version) . ', Copyright © ' . htmlspecialchars(TYPO3_copyright_year), 'Kasper Skårhøj'); $content='

' . $LANG->getLL('welcome', TRUE) . '

-

'.$minorText.'

+

' . $minorText . '

-

'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:community_credits', true).'

-

'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:information_detail').'

+

'. $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:community_credits', true) . '

+

'. $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:information_detail') . '

@@ -120,11 +111,30 @@
-

'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_authors', true).'

-

'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_list_info', true).'

-
'.$this->getExtensionAuthors().' +

' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:external_libraries', true) . '

+

' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:external_thanks', true) . '

+
+ + + + + + + + + + + + +
Audio player Pluginwww.1pixelout.net
CodeMirrorcodemirror.net
ExtJSwww.sencha.com
JSMinwww.crockford.com
Modernizrwww.modernizr.com
Prototype JavaScript frameworkwww.prototypejs.org
RemoveXSSquickwired.com
script.aculo.usscript.aculo.us
SWFUploadwww.swfupload.org
Swift Mailerswiftmailer.org
+ +
+

' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_authors', true) . '

+

' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_list_info', true) . '

+
' . $this->getExtensionAuthors() . '
+
'; // Renders the module page @@ -149,43 +159,31 @@ * @return string list of extensions authors and their e-mail */ function getExtensionAuthors() { - $content = ''; + $content = '
'.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension', true).''.$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_author', true).'
'; $loadedExtensions = $GLOBALS['TYPO3_LOADED_EXT']; foreach ($loadedExtensions as $extensionKey => $extension) { if (is_array($extension) && $extension['type'] != 'S') { - $emconfPath = PATH_site.$extension['siteRelPath'].'ext_emconf.php'; + $emconfPath = PATH_site . $extension['siteRelPath'] . 'ext_emconf.php'; include($emconfPath); $emconf = $EM_CONF['']; // ext key is not set when loading the ext_emconf.php directly - $content.= ''. - ''; + $content.= ''. + ''; } } - $content.= '
' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension', true) . '' . $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_mod_help_about.xml:extension_author', true) . '
'.$emconf['title'].' ('.$extensionKey.')'.$emconf['author'].'
' . $emconf['title'] . ' (' . $extensionKey . ')' . $emconf['author'] . '
'; + $content .= ''; return $content; } } -// Include extension? if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/mod/help/about/index.php'])) { include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/mod/help/about/index.php']); } - - - - - - - - - - - // Make instance: $SOBE = t3lib_div::makeInstance('SC_mod_help_about_index'); $SOBE->main(); Index: typo3/sysext/lang/locallang_mod_help_about.xml --- typo3/sysext/lang/locallang_mod_help_about.xml Base (BASE) +++ typo3/sysext/lang/locallang_mod_help_about.xml Locally Modified (Based On LOCAL) @@ -21,6 +21,8 @@ + +