layh.com

Whatever...TYPO3...FLOW3...and more...

File template for a ViewHelper

File template for a ViewHelper
<?php
namespace ${Vendor-name}\\${FLOW3-package}\ViewHelpers;

use TYPO3\FLOW3\Annotations as FLOW3;

/**
* ${NAME}
* 
* ${FLOW3-viewhelper-description}
*
* @author ${Author} <${Email}>
*
* @FLOW3\Scope("prototype")
*/
class ${NAME} extends \TYPO3\Fluid\Core\ViewHelper\AbstractViewHelper {

	/**
	 * @return string
	 */
	public function render() {
		return '';
	}

}