Hey Jens,
> public function render($entity, $propertyName) {
> $getterName = 'get' . ucfirst($propertyName);
> return $entity->$getterName();
Nitpick: Instead of this, you should use
\TYPO3\FLOW3\Reflection\ObjectAccess::getProperty... :-)
Greets, Sebastian