TYPO3 CMS  TYPO3_6-2
SpriteIconViewHelper.php
Go to the documentation of this file.
1 <?php
27 
36  public function render($icon, $title = '', $class = '') {
37  $options = array(
38  'title' => $title,
39  'class' => $class,
40  );
41  return \TYPO3\CMS\Backend\Utility\IconUtility::getSpriteIcon($icon, $options);
42  }
43 
44 }