This commit is contained in:
Philipp Dieter
2018-11-30 22:50:45 +01:00
commit baa56b6dc3
43 changed files with 1794 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?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);
}
}