2024-06-01 23:15:35 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace DigiComp\FluidRenderFunctions\Tests\Functional\Fixtures\Controller;
|
|
|
|
|
|
|
|
use Neos\Flow\Mvc\Controller\ActionController;
|
|
|
|
use Neos\Flow\Persistence\Doctrine\Query;
|
2024-06-01 23:24:43 +02:00
|
|
|
use Neos\FluidAdaptor\Tests\Functional\Form\Fixtures\Domain\Model\Tag;
|
2024-06-01 23:15:35 +02:00
|
|
|
|
|
|
|
class TestController extends ActionController
|
|
|
|
{
|
|
|
|
public function indexAction()
|
|
|
|
{
|
|
|
|
$this->view->assign('test', ['name' => 'hallo']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function selectAction()
|
|
|
|
{
|
2024-06-01 23:24:43 +02:00
|
|
|
$this->view->assign('testEntities', (new Query(Tag::class))->execute());
|
2024-06-01 23:15:35 +02:00
|
|
|
}
|
|
|
|
}
|