template_aide/Classes/Controller/DummyController.php
Philipp Dieter baa56b6dc3 [INIT]
2018-11-30 22:50:45 +01:00

31 lines
656 B
PHP

<?php
namespace Cjel\TemplatesAide\Controller;
/***
*
* This file is part of the "Templates Aide" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* (c) 2018 Philipp Dieter <philippdieter@attic-media.net>
*
***/
/**
* DummyController
*/
class DummyController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController
{
/**
* action list
*
* @return void
*/
public function listAction()
{
$dummies = $this->dummyRepository->findAll();
$this->view->assign('dummies', $dummies);
}
}