layh.com

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

File template for a FLOW3 Controller

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

/*                                                                        *
 * This script belongs to the FLOW3 package "${Vendor-name}.${FLOW3-package}".              *
 *                                                                        *
 * It is free software; you can redistribute it and/or modify it under    *
 * the terms of the GNU Lesser General Public License as published by the *
 * Free Software Foundation, either version 3 of the License, or (at your *
 * option) any later version.                                             *
 *                                                                        *
 * This script is distributed in the hope that it will be useful, but     *
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN-    *
 * TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser       *
 * General Public License for more details.                               *
 *                                                                        *
 * You should have received a copy of the GNU Lesser General Public       *
 * License along with the script.                                         *
 * If not, see http://www.gnu.org/licenses/lgpl.html                      *
 *                                                                        */

use TYPO3\FLOW3\Annotations as FLOW3;

/**
 * ${NAME} controller for the ${Vendor-name}.${FLOW3-package} package
 *
 * @author ${Author} <${Email}>
*/
class ${NAME} extends \TYPO3\FLOW3\MVC\Controller\ActionController {

	/**
	 * indexAction
	 *
	 * @return void
	 */
	public function indexAction() {
	}

}