* @package TYPO3
* @subpackage t3lib
*/
final class t3lib_iconWorks {
public static $fileSpriteIconNames = array(
'htm' => 'mimetypes-text-html',
'html' => 'mimetypes-text-html',
'css' => 'mimetypes-text-css',
'js' => 'mimetypes-text-js',
'csv' => 'mimetypes-text-csv',
'php' => 'mimetypes-text-php',
'php6' => 'mimetypes-text-php',
'php5' => 'mimetypes-text-php',
'php4' => 'mimetypes-text-php',
'php3' => 'mimetypes-text-php',
'inc' => 'mimetypes-text-php',
'ts' => 'mimetypes-text-ts',
'txt' => 'mimetypes-text-text',
'class' => 'mimetypes-text-text',
'tmpl' => 'mimetypes-text-text',
'jpg' => 'mimetypes-media-image',
'jpeg' => 'mimetypes-media-image',
'gif' => 'mimetypes-media-image',
'png' => 'mimetypes-media-image',
'bmp' => 'mimetypes-media-image',
'tif' => 'mimetypes-media-image',
'tga' => 'mimetypes-media-image',
'psd' => 'mimetypes-media-image',
'eps' => 'mimetypes-media-image',
'avi' => 'mimetypes-media-video',
'mpg' => 'mimetypes-media-video',
'mpeg' => 'mimetypes-media-video',
'mov' => 'mimetypes-media-video',
'wav' => 'mimetypes-media-audio',
'mp3' => 'mimetypes-media-audio',
'mid' => 'mimetypes-media-audio',
'swf' => 'mimetypes-media-flash',
'swa' => 'mimetypes-media-flash',
'exe' => 'mimetypes-executable-executable',
'com' => 'mimetypes-executable-executable',
't3x' => 'mimetypes-compressed',
't3d' => 'mimetypes-compressed',
'zip' => 'mimetypes-compressed',
'tgz' => 'mimetypes-compressed',
'gz' => 'mimetypes-compressed',
'pdf' => 'mimetypes-pdf',
'doc' => 'mimetypes-word',
'dot' => 'mimetypes-word',
'docm' => 'mimetypes-word',
'docx' => 'mimetypes-word',
'dotm' => 'mimetypes-word',
'dotx' => 'mimetypes-word',
'sxw' => 'mimetypes-word',
'rtf' => 'mimetypes-word',
'xls' => 'mimetypes-excel',
'xlsm' => 'mimetypes-excel',
'xlsx' => 'mimetypes-excel',
'xltm' => 'mimetypes-excel',
'xltx' => 'mimetypes-excel',
'sxc' => 'mimetypes-excel',
'ppt' => 'mimetypes-powerpoint',
'pptm' => 'mimetypes-powerpoint',
'pptx' => 'mimetypes-powerpoint',
'potm' => 'mimetypes-powerpoint',
'potx' => 'mimetypes-powerpoint',
'mount' => 'apps-filetree-mount',
'folder' => 'apps-filetree-folder-default',
'default' => 'mimetypes-other-other'
);
/**
* Returns an icon image tag, 18x16 pixels, based on input information.
* This function is recommended to use in your backend modules.
*
* @param string The table name
* @param array The table row ("enablefields" are at least needed for correct icon display and for pages records some more fields in addition!)
* @param string The backpath to the main TYPO3 directory (relative path back to PATH_typo3)
* @param string Additional attributes for the image tag
* @param boolean If set, the icon will be grayed/shaded
* @return string
-tag
* @see getIcon()
*/
public static function getIconImage($table, $row = array(), $backPath, $params = '', $shaded = FALSE) {
$str = '
0) {
if (intval($row[$enCols['endtime']]) < $GLOBALS['EXEC_TIME']) {
$timing = TRUE; // End-timing applies at this point.
} else {
$futuretiming = TRUE; // End-timing WILL apply in the future for this element.
}
}
}
// If a user-group field is set:
if ($enCols['fe_group']) {
$user = $row[$enCols['fe_group']];
if ($user && $doNotRenderUserGroupNumber) {
$user = 100;
} // Limit for user number rendering!
}
}
// If "deleted" flag is set (only when listing records which are also deleted!)
if ($col = $row[$GLOBALS['TCA'][$table]['ctrl']['delete']]) {
$deleted = TRUE;
}
// Detecting extendToSubpages (for pages only)
if ($table == 'pages' && $row['extendToSubpages'] && ($hidden || $timing || $futuretiming || $user)) {
$protectSection = TRUE;
}
// If ANY of the booleans are set it means we have to alter the icon:
if ($hidden || $timing || $futuretiming || $user || $deleted || $shaded || $noIconFound) {
$flags = '';
$string = '';
if ($deleted) {
$string = 'deleted';
$flags = 'd';
} elseif ($noIconFound) { // This is ONLY for creating icons with "?" on easily...
$string = 'no_icon_found';
$flags = 'x';
} else {
if ($hidden) {
$string .= 'hidden';
}
if ($timing) {
$string .= 'timing';
}
if (!$string && $futuretiming) {
$string = 'futuretiming';
}
$flags .=
($hidden ? 'h' : '') .
($timing ? 't' : '') .
($futuretiming ? 'f' : '') .
($user ? 'u' : '') .
($protectSection ? 'p' : '') .
($shaded ? 's' : '');
}
// Create tagged icon file name:
$iconFileName_stateTagged = preg_replace('/.([[:alnum:]]+)$/', '__' . $flags . '.\1', basename($iconfile));
// Check if tagged icon file name exists (a tagget icon means the icon base name with the flags added between body and extension of the filename, prefixed with underscore)
if (@is_file(dirname($absfile) . '/' . $iconFileName_stateTagged) || @is_file($GLOBALS['TBE_STYLES']['skinImgAutoCfg']['absDir'] . '/' . dirname($iconfile) . '/' . $iconFileName_stateTagged)) { // Look for [iconname]_xxxx.[ext]
return dirname($iconfile) . '/' . $iconFileName_stateTagged;
} else { // Otherwise, create the icon:
$theRes = self::makeIcon($GLOBALS['BACK_PATH'] . $iconfile, $string, $user, $protectSection, $absfile, $iconFileName_stateTagged);
return $theRes;
}
} else {
return $iconfile;
}
}
/**
* Returns the src=... for the input $src value OR any alternative found in $TBE_STYLES['skinImg']
* Used for skinning the TYPO3 backend with an alternative set of icons
*
* @param string Current backpath to PATH_typo3 folder
* @param string Icon file name relative to PATH_typo3 folder
* @param string Default width/height, defined like 'width="12" height="14"'
* @param integer Mode: 0 (zero) is default and returns src/width/height. 1 returns value of src+backpath, 2 returns value of w/h.
* @return string Returns ' src="[backPath][src]" [wHattribs]'
* @see skinImgFile()
*/
public static function skinImg($backPath, $src, $wHattribs = '', $outputMode = 0) {
static $cachedSkinImages = array();
$imageId = md5($backPath . $src . $wHattribs . $outputMode);
if (isset($cachedSkinImages[$imageId])) {
return $cachedSkinImages[$imageId];
}
// Setting source key. If the icon is refered to inside an extension, we homogenize the prefix to "ext/":
$srcKey = preg_replace('/^(\.\.\/typo3conf\/ext|sysext|ext)\//', 'ext/', $src);
#if ($src!=$srcKey)debug(array($src, $srcKey));
// LOOKING for alternative icons:
if ($GLOBALS['TBE_STYLES']['skinImg'][$srcKey]) { // Slower or faster with is_array()? Could be used.
list($src, $wHattribs) = $GLOBALS['TBE_STYLES']['skinImg'][$srcKey];
} elseif ($GLOBALS['TBE_STYLES']['skinImgAutoCfg']) { // Otherwise, test if auto-detection is enabled:
// Search for alternative icon automatically:
$fExt = $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['forceFileExtension'];
$scaleFactor = ($GLOBALS['TBE_STYLES']['skinImgAutoCfg']['scaleFactor'] ? $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['scaleFactor'] : 1); // Scaling factor
$lookUpName = ($fExt ? preg_replace('/\.[[:alnum:]]+$/', '', $srcKey) . '.' . $fExt : $srcKey); // Set filename to look for
if ($fExt && !@is_file($GLOBALS['TBE_STYLES']['skinImgAutoCfg']['absDir'] . $lookUpName)) {
// fallback to original filename if icon with forced extension doesn't exists
$lookUpName = $srcKey;
}
// If file is found:
if (@is_file($GLOBALS['TBE_STYLES']['skinImgAutoCfg']['absDir'] . $lookUpName)) { // If there is a file...
$iInfo = @getimagesize($GLOBALS['TBE_STYLES']['skinImgAutoCfg']['absDir'] . $lookUpName); // Get width/height:
// Set $src and $wHattribs:
$src = $GLOBALS['TBE_STYLES']['skinImgAutoCfg']['relDir'] . $lookUpName;
$wHattribs = 'width="' . round($iInfo[0] * $scaleFactor) . '" height="' . round($iInfo[1] * $scaleFactor) . '"';
}
// In any case, set currect src / wHattrib - this way we make sure that an entry IS found next time we hit the function,
// regardless of whether it points to a alternative icon or just the current.
$GLOBALS['TBE_STYLES']['skinImg'][$srcKey] = array($src, $wHattribs); // Set default...
}
// DEBUG: This doubles the size of all icons - for testing/debugging:
// if (preg_match('/^width="([0-9]+)" height="([0-9]+)"$/', $wHattribs, $reg)) $wHattribs='width="'.($reg[1]*2).'" height="'.($reg[2]*2).'"';
// rendering disabled (greyed) icons using _i (inactive) as name suffix ("_d" is already used)
$matches = array();
$srcBasename = basename($src);
if (preg_match('/(.*)_i(\....)$/', $srcBasename, $matches)) {
$temp_path = dirname(PATH_thisScript) . '/';
if (!@is_file($temp_path . $backPath . $src)) {
$srcOrg = preg_replace('/_i' . preg_quote($matches[2]) . '$/', $matches[2], $src);
$src = self::makeIcon($backPath . $srcOrg, 'disabled', 0, FALSE, $temp_path . $backPath . $srcOrg, $srcBasename);
}
}
// Return icon source/wHattributes:
$output = '';
switch ($outputMode) {
case 0:
$output = ' src="' . $backPath . $src . '" ' . $wHattribs;
break;
case 1:
$output = $backPath . $src;
break;
case 2:
$output = $wHattribs;
break;
}
$cachedSkinImages[$imageId] = $output;
return $output;
}
/***********************************
*
* Other functions
*
***********************************/
/**
* Creates the icon file for the function getIcon()
*
* @param string Original unprocessed Icon file, relative path to PATH_typo3
* @param string Mode string, eg. "deleted" or "futuretiming" determining how the icon will look
* @param integer The number of the fe_group record uid if applicable
* @param boolean Flag determines if the protected-section icon should be applied.
* @param string Absolute path to file from which to create the icon.
* @param string The filename that this icon should have had, basically [icon base name]_[flags].[extension] - used for part of temporary filename
* @return string Filename relative to PATH_typo3
* @access private
*/
public static function makeIcon($iconfile, $mode, $user, $protectSection, $absFile, $iconFileName_stateTagged) {
$iconFileName = 'icon_' . t3lib_div::shortMD5($iconfile . '|' . $mode . '|-' . $user . '|' . $protectSection) . '_' . $iconFileName_stateTagged . '.' . ($GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib_png'] ? 'png' : 'gif');
$mainpath = '../typo3temp/' . $iconFileName;
$path = PATH_site . 'typo3temp/' . $iconFileName;
if (file_exists(PATH_typo3 . 'icons/' . $iconFileName)) { // Returns if found in typo3/icons/
return 'icons/' . $iconFileName;
} elseif (file_exists($path)) { // Returns if found in ../typo3temp/icons/
return $mainpath;
} else { // Makes icon:
if (file_exists($absFile)) {
if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib']) {
// Create image pointer, if possible
$im = self::imagecreatefrom($absFile);
if ($im < 0) {
return $iconfile;
}
// Converting to gray scale, dimming the icon:
if (($mode == 'disabled') OR ($mode != 'futuretiming' && $mode != 'no_icon_found' && !(!$mode && $user))) {
for ($c = 0; $c < ImageColorsTotal($im); $c++) {
$cols = ImageColorsForIndex($im, $c);
$newcol = round(($cols['red'] + $cols['green'] + $cols['blue']) / 3);
$lighten = ($mode == 'disabled') ? 2.5 : 2;
$newcol = round(255 - ((255 - $newcol) / $lighten));
ImageColorSet($im, $c, $newcol, $newcol, $newcol);
}
}
// Applying user icon, if there are access control on the item:
if ($user) {
if ($user < 100) { // Apply user number only if lower than 100
$black = ImageColorAllocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, (($user > 10) ? 9 : 5), 8, $black);
$white = ImageColorAllocate($im, 255, 255, 255);
imagestring($im, 1, 1, 1, $user, $white);
}
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_group.gif');
if ($ol_im < 0) {
return $iconfile;
}
self::imagecopyresized($im, $ol_im, 0, 0, 0, 0, imagesx($ol_im), imagesy($ol_im), imagesx($ol_im), imagesy($ol_im));
}
// Applying overlay based on mode:
if ($mode) {
unset($ol_im);
switch ($mode) {
case 'deleted':
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_deleted.gif');
break;
case 'futuretiming':
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_timing.gif');
break;
case 'timing':
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_timing.gif');
break;
case 'hiddentiming':
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_hidden_timing.gif');
break;
case 'no_icon_found':
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_no_icon_found.gif');
break;
case 'disabled':
// is already greyed - nothing more
$ol_im = 0;
break;
case 'hidden':
default:
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_hidden.gif');
break;
}
if ($ol_im < 0) {
return $iconfile;
}
if ($ol_im) {
self::imagecopyresized($im, $ol_im, 0, 0, 0, 0, imagesx($ol_im), imagesy($ol_im), imagesx($ol_im), imagesy($ol_im));
}
}
// Protect-section icon:
if ($protectSection) {
$ol_im = self::imagecreatefrom($GLOBALS['BACK_PATH'] . 'gfx/overlay_sub5.gif');
if ($ol_im < 0) {
return $iconfile;
}
self::imagecopyresized($im, $ol_im, 0, 0, 0, 0, imagesx($ol_im), imagesy($ol_im), imagesx($ol_im), imagesy($ol_im));
}
// Create the image as file, destroy GD image and return:
@self::imagemake($im, $path);
t3lib_div::gif_compress($path, 'IM');
ImageDestroy($im);
return $mainpath;
} else {
return $iconfile;
}
} else {
return $GLOBALS['BACK_PATH'] . 'gfx/fileicons/default.gif';
}
}
}
/**
* The necessity of using this function for combining two images if GD is version 2 is that
* GD2 cannot manage to combine two indexed-color images without totally spoiling everything.
* In class.t3lib_stdgraphic this was solved by combining the images onto a first created true color image
* However it has turned out that this method will not work if the indexed png-files contains transparency.
* So I had to turn my attention to ImageMagick - my 'enemy of death'.
* And so it happend - ImageMagick is now used to combine my two indexed-color images with transparency. And that works.
* Of course it works only if ImageMagick is able to create valid png-images - which you cannot be sure of with older versions (still 5+)
* The only drawback is (apparently) that IM creates true-color png's. The transparency of these will not be shown by MSIE on windows at this time (although it's straight 0%/100% transparency!) and the file size may be larger.
*
* For parameters, see PHP function "imagecopyresized()"
*
* @param pointer see PHP function "imagecopyresized()"
* @param pointer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @param integer see PHP function "imagecopyresized()"
* @return void
* @access private
*/
public static function imagecopyresized(&$im, $cpImg, $Xstart, $Ystart, $cpImgCutX, $cpImgCutY, $w, $h, $w, $h) {
imagecopyresized($im, $cpImg, $Xstart, $Ystart, $cpImgCutX, $cpImgCutY, $w, $h, $w, $h);
}
/**
* Create new image pointer from input file (either gif/png, in case the wrong format it is converted by t3lib_div::read_png_gif())
*
* @param string Absolute filename of the image file from which to start the icon creation.
* @return mixed If success, image pointer, otherwise "-1"
* @access private
* @see t3lib_div::read_png_gif
*/
public static function imagecreatefrom($file) {
$file = t3lib_div::read_png_gif($file, $GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib_png']);
if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib_png']) {
return $file ? imagecreatefrompng($file) : -1;
} else {
return $file ? imagecreatefromgif($file) : -1;
}
}
/**
* Write the icon in $im pointer to $path
*
* @param pointer Pointer to GDlib image resource
* @param string Absolute path to the filename in which to write the icon.
* @return void
* @access private
*/
public static function imagemake($im, $path) {
if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib_png']) {
@ImagePng($im, $path);
} else {
@ImageGif($im, $path);
}
if (@is_file($path)) {
t3lib_div::fixPermissions($path);
}
}
/**********************************************
* SPRITE ICON API
*
* The Sprite Icon API helps you to quickly get the HTML for any icon you want
* this is typically wrapped in a tag with corresponding CSS classes that
* will be responsible for the
*
* There are three ways to use this API:
*
* 1) for any given TCA record
* $spriteIconHtml = t3lib_iconWorks::getSpriteIconForRecord('pages', $row);
*
* 2) for any given file
* $spriteIconHtml = t3lib_iconWorks::getSpriteIconForFile('myimage.png');
*
* 3) for any other icon you know the name
* $spriteIconHtml = t3lib_iconWorks::getSpriteIcon('actions-document-open');
*
**********************************************/
/**
* This generic method is used throughout the TYPO3 Backend to show icons in any variation which are not
* bound to any file type (see getSpriteIconForFile) or database record (see getSpriteIconForRecord)
*
* Generates a HTML tag with proper CSS classes. The TYPO3 skin has defined these CSS classes
* already to have a pre-defined background image, and the correct background-position to show
* the necessary icon.
*
* @param string $iconName the name of the icon to fetch
* @param array $options an associative array with additional options and attributes for the tag. by default, the key is the name of the attribute, and the value is the parameter string that is set. However, there are some additional special reserved keywords that can be used as keys: "html" (which is the HTML that will be inside the icon HTML tag), "tagName" (which is an alternative tagName than "span"), and "class" (additional class names that will be merged with the sprite icon CSS classes)
* @param array $overlays an associative array with the icon-name as key, and the options for this overlay as an array again (see the parameter $options again)
* @return string the full HTML tag (usually a )
* @access public
*/
public static function getSpriteIcon($iconName, array $options = array(), array $overlays = array()) {
$innerHtml = (isset($options['html']) ? $options['html'] : NULL);
$tagName = (isset($options['tagName']) ? $options['tagName'] : NULL);
// deal with the overlays
if (count($overlays)) {
foreach ($overlays as $overlayIconName => $overlayOptions) {
$overlayOptions['html'] = $innerHtml;
$overlayOptions['class'] = (isset($overlayOptions['class']) ? $overlayOptions['class'] . ' ' : '') . 't3-icon-overlay';
$innerHtml = self::getSpriteIcon($overlayIconName, $overlayOptions);
}
}
// check if whished icon is available
$iconName = (in_array($iconName, $GLOBALS['TBE_STYLES']['spriteIconApi']['iconsAvailable']) || $iconName == 'empty-empty' ? $iconName : 'status-status-icon-missing');
// create the CSS class
$options['class'] = self::getSpriteIconClasses($iconName) . (isset($options['class']) ? ' ' . $options['class'] : '');
unset($options['html']);
unset($options['tagName']);
return self::buildSpriteHtmlIconTag($options, $innerHtml, $tagName);
}
/**
* This method is used throughout the TYPO3 Backend to show icons for a file type
*
* Generates a HTML tag with proper CSS classes. The TYPO3 skin has defined these CSS classes
* already to have a pre-defined background image, and the correct background-position to show
* the necessary icon.
*
* @param string $fileExtension the name of the icon to fetch, can be a file extension, full file path or one of the special keywords "folder" or "mount"
* @param array $options an associative array with additional options and attributes for the tag. by default, the key is the name of the attribute, and the value is the parameter string that is set. However, there are some additional special reserved keywords that can be used as keys: "html" (which is the HTML that will be inside the icon HTML tag), "tagName" (which is an alternative tagName than "span"), and "class" (additional class names that will be merged with the sprite icon CSS classes)
* @return string the full HTML tag (usually a )
* @access public
*/
public static function getSpriteIconForFile($fileExtension, array $options = array()) {
$innerHtml = (isset($options['html']) ? $options['html'] : NULL);
$tagName = (isset($options['tagName']) ? $options['tagName'] : NULL);
// create the CSS class
$options['class'] = self::mapFileExtensionToSpriteIconClass($fileExtension) . (isset($options['class']) ? ' ' . $options['class'] : '');
unset($options['html']);
unset($options['tagName']);
return self::buildSpriteHtmlIconTag($options, $innerHtml, $tagName);
}
/**
* Generates the spriteicon css classes name for a given path or fileExtension
* usually called from getSpriteIconForFile or ExtJs Provider
*
* @param string fileExtension can be jpg, gif etc, but also be 'mount' or 'folder', but can also be a full path which will be resolved then
* @return string the string of the CSS class, see t3lib_iconworks::$fileSpriteIconNames
* @access private
*/
public static function mapFileExtensionToSpriteIconClass($fileExtension) {
return self::getSpriteIconClasses(self::mapFileExtensionToSpriteIconName($fileExtension));
}
/**
* Generates the spriteicon name for a given path or fileExtension
* usually called from mapFileExtensionToSpriteIconClass and tceforms
*
* @param string fileExtension can be jpg, gif etc, but also be 'mount' or 'folder', but can also be a full path which will be resolved then
* @return string the string of the CSS class, see t3lib_iconworks::$fileSpriteIconNames
* @access private
*/
public static function mapFileExtensionToSpriteIconName($fileExtension) {
// if the file is a whole file with name etc (mainly, if it has a "." or a "/"),
// then it is checked whether it is a valid directory
if (strpos($fileExtension, '.') !== FALSE || strpos($fileExtension, '/') !== FALSE) {
// check if it is a directory
$filePath = dirname(t3lib_div::getIndpEnv('SCRIPT_FILENAME')) . '/' . $GLOBALS['BACK_PATH'] . $fileExtension;
$path = t3lib_div::resolveBackPath($filePath);
if (is_dir($path) || substr($fileExtension, -1) === '/' || substr($fileExtension, -1) === '\\') {
$fileExtension = 'folder';
} else {
if (($pos = strrpos($fileExtension, '.')) !== FALSE) {
$fileExtension = strtolower(substr($fileExtension, $pos + 1));
} else {
$fileExtension = 'default';
}
}
}
// if the file extension is not valid
// then use the default one
if (!isset(self::$fileSpriteIconNames[$fileExtension])) {
$fileExtension = 'default';
}
$iconName = self::$fileSpriteIconNames[$fileExtension];
return $iconName;
}
/**
* This method is used throughout the TYPO3 Backend to show icons for a DB record
*
* Generates a HTML tag with proper CSS classes. The TYPO3 skin has defined these CSS classes
* already to have a pre-defined background image, and the correct background-position to show
* the necessary icon.
*
* @param string $table the TCA table name
* @param array $row the DB record of the TCA table
* @param array $options an associative array with additional options and attributes for the tag. by default, the key is the name of the attribute, and the value is the parameter string that is set. However, there are some additional special reserved keywords that can be used as keys: "html" (which is the HTML that will be inside the icon HTML tag), "tagName" (which is an alternative tagName than "span"), and "class" (additional class names that will be merged with the sprite icon CSS classes)
* @return string the full HTML tag (usually a )
* @access public
*/
public static function getSpriteIconForRecord($table, array $row, array $options = array()) {
$innerHtml = (isset($options['html']) ? $options['html'] : NULL);
$tagName = (isset($options['tagName']) ? $options['tagName'] : NULL);
// overlay this record icon with the status of the row
$overlaySpriteIconName = self::mapRecordOverlayToSpriteIconName($table, $row);
if ($overlaySpriteIconName) {
$overlayOptions = array(
'html' => $innerHtml,
'class' => 't3-icon-overlay'
);
$innerHtml = self::getSpriteIcon($overlaySpriteIconName, $overlayOptions);
}
// fetch the name for the CSS class, based on the $row
$options['class'] = self::mapRecordTypeToSpriteIconClass($table, $row) . (isset($options['class']) ? ' ' . $options['class'] : '');
unset($options['html']);
unset($options['tagName']);
return self::buildSpriteHtmlIconTag($options, $innerHtml, $tagName);
}
/**
* this helper functions looks up the column that is used for the type of
* the chosen TCA table. And then fetches the corresponding class
* based on the chosen iconsprite class in this TCA
* The TCA looks up
* - [ctrl][typeicon_column]
* -
* This method solely takes care of the type of this record, not any
* statuses, used for overlays.
* You should not use this directly besides if you need classes for ExtJS iconCls.
*
* see t3lib/stddb/tables.php for an example with the TCA table "pages"
*
* @param string $table the TCA table
* @param array $row the selected record
* @return string the CSS class for the sprite icon of that DB record
* @access private
**/
public static function mapRecordTypeToSpriteIconClass($table, array $row) {
return self::getSpriteIconClasses(self::mapRecordTypeToSpriteIconName($table, $row));
}
/**
* this helper functions looks up the column that is used for the type of
* the chosen TCA table. And then fetches the corresponding iconname
* based on the chosen iconsprite class in this TCA
* The TCA looks up
* - [ctrl][typeicon_column]
* -
* This method solely takes care of the type of this record, not any
* statuses, used for overlays.
* You should not use this directly besides if you need it in tceforms/core classes
*
* see t3lib/stddb/tables.php for an example with the TCA table "pages"
*
* @param string $table the TCA table
* @param array $row the selected record
* @return string the CSS class for the sprite icon of that DB record
* @access private
**/
public static function mapRecordTypeToSpriteIconName($table, array $row) {
$recordType = array();
$ref = NULL;
if (isset($GLOBALS['TCA'][$table]['ctrl']['typeicon_column'])) {
$column = $GLOBALS['TCA'][$table]['ctrl']['typeicon_column'];
if (isset($row[$column])) {
$recordType[1] = $row[$column];
} else {
$recordType[1] = 'default';
}
// workaround to give nav_hide pages a complete different icon
// although it's not a separate doctype
// and to give root-pages an own icon
if ($table === 'pages') {
if ($row['nav_hide']) {
$recordType[2] = $recordType[1] . '-hideinmenu';
}
if ($row['is_siteroot']) {
$recordType[3] = $recordType[1] . '-root';
}
if ($row['module']) {
$recordType[4] = 'contains-' . $row['module'];
}
}
if (is_array($GLOBALS['TCA'][$table]['ctrl']['typeicon_classes'])) {
foreach ($recordType AS $key => $type) {
if (isset($GLOBALS['TCA'][$table]['ctrl']['typeicon_classes'][$type])) {
$recordType[$key] = $GLOBALS['TCA'][$table]['ctrl']['typeicon_classes'][$type];
} else {
unset($recordType[$key]);
}
}
$recordType[0] = $GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['default'];
if (isset($GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['mask'])) {
$recordType[5] = str_replace('###TYPE###', $row[$column], $GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['mask']);
}
if (isset($GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['userFunc'])) {
$parameters = array('row' => $row);
$recordType[6] = t3lib_div::callUserFunction(
$GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['userFunc'],
$parameters,
$ref
);
}
} else {
foreach ($recordType as &$type) {
$type = 'tcarecords-' . $table . '-' . $type;
}
unset($type);
$recordType[0] = 'tcarecords-' . $table . '-default';
}
} else {
if (is_array($GLOBALS['TCA'][$table]['ctrl']['typeicon_classes'])) {
$recordType[0] = $GLOBALS['TCA'][$table]['ctrl']['typeicon_classes']['default'];
} else {
$recordType[0] = 'tcarecords-' . $table . '-default';
}
}
krsort($recordType);
foreach ($recordType as $iconName) {
if (in_array($iconName, $GLOBALS['TBE_STYLES']['spriteIconApi']['iconsAvailable'])) {
return $iconName;
}
}
return 'status-status-icon-missing';
}
/**
* this helper functions checks if the DB record ($row) has any special status
* based on the TCA settings like hidden, starttime etc, and then returns a specific
* Sprite icon class for the overlay of this DB record
* This method solely takes care of the overlay of this record, not any type
*
* Please note that this only returns one overlay, one status, that is prioritized
* by $GLOBALS['TYPO3_CONF_VARS']['BE']['spriteIconRecordOverlayPriorities']
* We wanted to not have these icons blown over by tons of overlays, so this is limited
* to just one.
*
* see t3lib/config_default.php for the default options, you will find
* $GLOBALS['TYPO3_CONF_VARS']['BE']['spriteIconRecordOverlayNames'] that shows
* the list of CSS classes that will be used for the sprites, mapped to the statuses here
*
* @param string $table the TCA table
* @param array $row the selected record
* @return string the CSS class for the sprite icon of that DB record
* @access private
*/
public static function mapRecordOverlayToSpriteIconName($table, array $row) {
$tcaCtrl = $GLOBALS['TCA'][$table]['ctrl'];
// Calculate for a given record the actual visibility at the moment
$status = array(
'hidden' => FALSE,
'starttime' => FALSE,
'endtime' => FALSE,
'futureendtime' => FALSE,
'fe_group' => FALSE,
'deleted' => FALSE,
'protectedSection' => FALSE,
'nav_hide' => ($row['nav_hide'] ? TRUE : FALSE),
'noIconFound' => ($row['_NO_ICON_FOUND'] ? TRUE : FALSE),
);
// Icon state based on "enableFields":
if (is_array($tcaCtrl['enablecolumns'])) {
$enCols = $tcaCtrl['enablecolumns'];
// If "hidden" is enabled:
if ($tcaCtrl['enablecolumns']['disabled'] && $row[$tcaCtrl['enablecolumns']['disabled']]) {
$status['hidden'] = TRUE;
}
// If a "starttime" is set and higher than current time:
if ($tcaCtrl['enablecolumns']['starttime'] && $GLOBALS['EXEC_TIME'] < intval($row[$tcaCtrl['enablecolumns']['starttime']])) {
$status['starttime'] = TRUE;
}
// If an "endtime" is set
if ($tcaCtrl['enablecolumns']['endtime']) {
if (intval($row[$tcaCtrl['enablecolumns']['endtime']]) > 0) {
if (intval($row[$tcaCtrl['enablecolumns']['endtime']]) < $GLOBALS['EXEC_TIME']) {
// End-timing applies at this point.
$status['endtime'] = TRUE;
} else {
// End-timing WILL apply in the future for this element.
$status['futureendtime'] = TRUE;
}
}
}
// If a user-group field is set
if ($tcaCtrl['enablecolumns']['fe_group'] && $row[$tcaCtrl['enablecolumns']['fe_group']]) {
$status['fe_group'] = TRUE;
}
}
// If "deleted" flag is set (only when listing records which are also deleted!)
if ($row[$tcaCtrl['delete']]) {
$status['deleted'] = TRUE;
}
// Detecting extendToSubpages (for pages only)
if ($table == 'pages' && $row['extendToSubpages']) {
$status['protectedSection'] = TRUE;
}
// Hook: allow some other process to influence the choice of icon overlay
// The method called receives the table name, the current row and the current status array as parameters
// The status array should be passed as a reference and in order to be modified within the hook
if (is_array($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_iconworks.php']['overrideIconOverlay'])) {
foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_iconworks.php']['overrideIconOverlay'] as $classRef) {
$hookObject = t3lib_div::getUserObj($classRef);
if (method_exists($hookObject, 'overrideIconOverlay')) {
$hookObject->overrideIconOverlay($table, $row, $status);
}
}
}
// now only show the status with the highest priority
$priorities = $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayPriorities'];
$iconName = '';
foreach ($priorities as $priority) {
if ($status[$priority]) {
$iconName = $GLOBALS['TBE_STYLES']['spriteIconApi']['spriteIconRecordOverlayNames'][$priority];
break;
}
}
return $iconName;
}
/**
* generic method to create the final CSS classes based on the sprite icon name
* with the base class and splits the name into parts
* is usually called by the methods that are responsible for fetching the names
* out of the file name, or the record type
*
* @param string $name iconname like 'actions-document-new'
* @return string a list of all CSS classes needed for the HTML tag
* @access public
*/
public static function getSpriteIconClasses($iconName) {
$cssClasses = $baseCssClass = 't3-icon';
$parts = explode('-', $iconName);
if (count($parts) > 1) {
// will be something like "t3-icon-actions"
$cssClasses .= ' ' . ($baseCssClass . '-' . $parts[0]);
// will be something like "t3-icon-actions-document"
$cssClasses .= ' ' . ($baseCssClass . '-' . $parts[0] . '-' . $parts[1]);
// will be something like "t3-icon-document-new"
$cssClasses .= ' ' . ($baseCssClass . '-' . substr($iconName, strlen($parts[0]) + 1));
}
return $cssClasses;
}
/**
* low level function that generates the HTML tag for the sprite icon
* is usually called by the three API classes (getSpriteIcon, getSpriteIconForFile, getSpriteIconForRecord)
* it does not care about classes or anything else, but just plainly builds the HTML tag
*
* @param array $tagAttributes an associative array of additional tagAttributes for the HTML tag
* @param string $innerHtml (optional) the content within the tag, a " " by default
* @param string $tagName (optional) the name of the HTML element that should be used (span by default)
*/
protected static function buildSpriteHtmlIconTag(array $tagAttributes, $innerHtml = NULL, $tagName = NULL) {
$innerHtml = ($innerHtml === NULL ? ' ' : $innerHtml);
$tagName = ($tagName === NULL ? 'span' : $tagName);
$attributes = '';
foreach ($tagAttributes as $attribute => $value) {
$attributes .= ' ' . htmlspecialchars($attribute) . '="' . htmlspecialchars($value) . '"';
}
return '<' . $tagName . $attributes . '>' . $innerHtml . '' . $tagName . '>';
}
}
?>