2 /***************************************************************
5 * (c) 2007 Ingo Renner <ingo@typo3.org>
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
30 * class to render the TYPO3 logo in the backend
34 * @author Ingo Renner <ingo@typo3.org>
47 public function __construct() {
52 * renders the actual logo code
54 * @return string logo html code snippet to use in the backend
56 public function render() {
58 $logoFile = 'gfx/alt_backend_logo.gif'; // default
59 if(is_string($this->logo
)) {
61 $logoFile = $this->logo
;
63 $imgInfo = getimagesize(PATH_site
.'typo3/'.$logoFile);
66 $logo = '<a href="http://www.typo3.com/" target="_blank" onclick="'.$GLOBALS['TBE_TEMPLATE']->thisBlur().'">'.
67 '<img'.t3lib_iconWorks
::skinImg('', $logoFile, $imgInfo[3]).' title="TYPO3 Content Management Framework" alt="" />'.
70 // overwrite with custom logo
71 if($GLOBALS['TBE_STYLES']['logo']) {
72 if(substr($GLOBALS['TBE_STYLES']['logo'], 0, 3) == '../') {
73 $imgInfo = @getimagesize
(PATH_site
.substr($GLOBALS['TBE_STYLES']['logo'], 3));
76 $logo = '<a href="http://www.typo3.com/" target="_blank" onclick="'.$GLOBALS['TBE_TEMPLATE']->thisBlur().'">'.
77 '<img src="'.$GLOBALS['TBE_STYLES']['logo'].'" '.$imgInfo[3].' title="TYPO3 Content Management Framework" alt="" />'.
87 * @param string path to logo file as seen from typo3/
89 public function setLogo($logo) {
90 if(!is_string($logo)) {
91 throw new InvalidArgumentException('parameter $logo must be of type string', 1194041104);
100 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/classes/class.typo3logo.php']) {
101 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/classes/class.typo3logo.php']);