Skip to content

Instantly share code, notes, and snippets.

@fvosberg
Created August 6, 2014 10:12
Show Gist options
  • Save fvosberg/80158cae6cd2c47df0fd to your computer and use it in GitHub Desktop.
Save fvosberg/80158cae6cd2c47df0fd to your computer and use it in GitHub Desktop.
Translate in Extbase Controller
<?php
protected function translate( $key, $arguments = array()) {
$extensionName = $this->request->getControllerExtensionName();
return \TYPO3\CMS\Extbase\Utility\LocalizationUtility::translate($key, $extensionName, $arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment