2 /***************************************************************
5 * (c) 2011 Francois Suter (francois.suter@typo3.org)
9 * This script is part of the TYPO3 project. The TYPO3 project is
10 * free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * The GNU General Public License can be found at
16 * http://www.gnu.org/copyleft/gpl.html.
17 * A copy is found in the textfile GPL.txt and important notices to the license
18 * from the author is found in LICENSE.txt distributed with these scripts.
21 * This script is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * This copyright notice MUST APPEAR in all copies of the script!
27 ***************************************************************/
30 * Implements a hook for t3lib_iconworks
32 class tx_version_iconworks
{
34 * Visualizes the deleted status for a versionized record.
36 * @param string $table Name of the table
37 * @param array $row Record row containing the field values
38 * @param array $status Status to be used for rendering the icon
41 public function overrideIconOverlay($table, array $row, array &$status) {
42 if (isset($row['t3ver_state']) && $row['t3ver_state'] == 2) {
43 $status['deleted'] = TRUE;
48 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['ext/version/class.tx_version_iconworks.php'])) {
49 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['ext/version/class.tx_version_iconworks.php']);