* * My LinkText * * * * * * * * Click Me! * * @author Cedric Ziel , Cedric Ziel - Internetdienstleistungen & EDV * @package Vhs * @subpackage ViewHelpers */ class TypolinkViewHelper extends AbstractViewHelper { /** * Initializes the arguments for the ViewHelper */ public function initializeArguments() { $this->registerArgument('configuration', 'array', 'The typoLink configuration', TRUE); } /** * @return mixed */ public function render() { return $GLOBALS['TSFE']->cObj->typoLink_URL($this->arguments['configuration']); } }