Mehrsprachigkeit: Unterschied zwischen den Versionen

Aus Wiki
Wechseln zu: Navigation, Suche
Zeile 2: Zeile 2:
 
<code>
 
<code>
 
<nowiki>
 
<nowiki>
<?php
+
<?php
/***************************************************************
+
 
*  Copyright notice
+
/***************************************************************
*   
+
 
*  (c) 1999-2002 Kasper Skårhøj (kasper@typo3.com)
+
*  Copyright notice
*  All rights reserved
+
*   
*
+
*  (c) 1999-2002 Kasper Skårhøj (kasper@typo3.com)
*  This script is part of the Typo3 project. The Typo3 project is  
+
*  All rights reserved
*  free software; you can redistribute it and/or modify
+
*
*  it under the terms of the GNU General Public License as published by
+
*  This script is part of the Typo3 project. The Typo3 project is  
*  the Free Software Foundation; either version 2 of the License, or
+
*  free software; you can redistribute it and/or modify
*  (at your option) any later version.
+
*  it under the terms of the GNU General Public License as published by
*  
+
*  the Free Software Foundation; either version 2 of the License, or
*  The GNU General Public License can be found at
+
*  (at your option) any later version.
 +
*  
 +
*  The GNU General Public License can be found at
 
*  http://www.gnu.org/copyleft/gpl.html.
 
*  http://www.gnu.org/copyleft/gpl.html.
 
*  A copy is found in the textfile GPL.txt and important notices to the license  
 
*  A copy is found in the textfile GPL.txt and important notices to the license  

Version vom 5. September 2006, 11:06 Uhr

language.inc <?php /*************************************************************** * Copyright notice * * (c) 1999-2002 Kasper Skårhøj (kasper@typo3.com) * All rights reserved * * This script is part of the Typo3 project. The Typo3 project is * free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * The GNU General Public License can be found at * http://www.gnu.org/copyleft/gpl.html. * A copy is found in the textfile GPL.txt and important notices to the license * from the author is found in LICENSE.txt distributed with these scripts. * * * This script is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ /** * example_languageMenu.php * * THIS IS AN EXAMPLE designed to work with the official Typo3 testsite, section "Another site in the ..." * * @author Kasper Skårhøj <kasper@typo3.com> */ // First, select all pages_language_overlay records on the current page. Each represents a possibility for a language. $query = "SELECT * FROM pages_language_overlay WHERE pid=".$GLOBALS["TSFE"]->id.$GLOBALS["TSFE"]->sys_page->enableFields("pages_language_overlay")." GROUP BY sys_language_uid"; $res = mysql(TYPO3_db,$query); $langArr=array(); while($row=mysql_fetch_assoc($res)) { $langArr[$row["sys_language_uid"]]=$row["title"]; } // Little red arrow, which is inserted to the left of the flag-icon if the TSFE->sys_language_uid equals the language uid (notice that 0=english, 1=danish and 2=german is SPECIFIC to this database, because these numbers refer to uid's of the table sys_language) //$pointer = '<img src="t3lib/gfx/content_client.gif" width="7" height="10" align=middle>'; // Set each icon. If the language is the current, red arrow is printed to the left. If the language is NOT found (represented by a pages_language_overlay record on this page), the icon is dimmed. $flags = array(); $flags[] = ($GLOBALS["TSFE"]->sys_language_uid==0?$pointer:"").'<a href="index.php?id='.$GLOBALS["TSFE"]->id.'&L=0" target=_top><img src="media/flags/flag_de.gif" width="21" height="13" hspace=5 border="0"></a>'; $flags[] = ($GLOBALS["TSFE"]->sys_language_uid==1?$pointer:"").'<a href="index.php?id='.$GLOBALS["TSFE"]->id.'&L=1" target=_top><img src="media/flags/flag_uk'.($langArr[1]?"":"_d").'.gif" width="21" height="13" hspace=5 border="0"></a>'; // Make the little menu. Notice, the menu does ONLY transfer the page-id and the "L" variable (which is also SPECIFIC for this website because "L" has been used in the extension template used to control the language setup) $content = '<table border=0 cellpadding=0 cellspacing=0><tr><td><img src=clear.gif width=30 height=1></td><td>'.implode("",$flags).'</td></</tr></table>'; ?>