2 /***************************************************************
5 * (c) 2010-2011 Steffen Ritter <info@steffen-ritter.net>
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 ***************************************************************/
31 * @author Steffen Ritter <info@steffen-ritter.net>
35 class t3lib_spritemanager_SpriteBuildingHandler
extends t3lib_spritemanager_AbstractHandler
{
38 * @var t3lib_spritemanager_SpriteGenerator
40 protected $generatorInstance = NULL
;
43 * Interface function. This will be called from the sprite manager to
48 public function generate() {
49 $this->generatorInstance
= t3lib_div
::makeInstance('t3lib_spritemanager_SpriteGenerator', 'GeneratorHandler');
50 $this->generatorInstance
51 ->setOmmitSpriteNameInIconName(TRUE
)
52 ->setIncludeTimestampInCSS(TRUE
)
53 ->setSpriteFolder(t3lib_SpriteManager
::$tempPath)
54 ->setCSSFolder(t3lib_SpriteManager
::$tempPath);
56 $iconsToProcess = array_merge(
57 (array) $GLOBALS['TBE_STYLES']['spritemanager']['singleIcons'],
58 $this->collectTcaSpriteIcons()
61 foreach ($iconsToProcess as $iconName => $iconFile) {
62 $iconsToProcess[$iconName] = t3lib_div
::resolveBackPath('typo3/' . $iconFile);
65 $generatorResponse = $this->generatorInstance
->generateSpriteFromArray($iconsToProcess);
67 $this->iconNames
= array_merge($this->iconNames
, $generatorResponse['iconNames']);
73 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['t3lib/spritemanager/class.t3lib_spritemanager_autogeneratinghandler.php'])) {
74 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['t3lib/spritemanager/class.t3lib_spritemanager_autogeneratinghandler.php']);