Questions tagged [typo3-flow]

Flow is a web application framework developed in PHP, created to support Neos, a next generation content management system.

Flow is a web application framework developed in PHP. With its convention before configuration approach, it cares for developer happiness and slim and readable code. Flow uses the Doctrine ORM and provides features like Dependency Injection and Aspect Oriented Programming.

It was started as foundation for Neos, a next generation content management system.

Official website: https://flow.neos.io/

116 questions
2
votes
2 answers

How to render methodAction of another Controller inside an action

I'm using extbase, fluid system on typo3 to build a backend module. I Have a Controller "MainController" action called 'AddBoxes' and I have another Controller called BoxElementsController, and there is an action method called 'popupBoxAction'. I…
coderex
  • 24,487
  • 43
  • 111
  • 167
2
votes
2 answers

Why is this Repository Method not working?

I used this Repository Method in an Extbase Project and it worked fine. public function findRandom() { $rows = $this->createQuery()->execute()->count(); $row_number = mt_rand(0, max(0, ($rows - 1))); return…
malteriechmann
  • 206
  • 2
  • 9
2
votes
1 answer

FLOW3: initialization of multi databases

I want to prepare two database connection, because in the first one are the stuff for the Website (e. g. Blogs, posts, etc.) and in the other one are the account data. The account data is in a other database, because it's my authentication database…
user1516851
2
votes
3 answers

Flow3 Debugging

I'm currently evaluating Flow3 for an upcoming project. The AOP Pattern and Dependency Injection would be just ideal for our purpose. Now what I can't figure out is how to debug some results in a controller Action. public function testAction() { …
Julian Hollmann
  • 2,812
  • 2
  • 22
  • 41
1
vote
2 answers

Typo3 Fluid Image ViewHelper and uploads directory

I am trying to use page content images in typo3 pages. I have uploaded 2 images and in DB only the filenames are stored. OK - I found the images in uploads direcory! But now how I have to display the image?! I can hrdcode the upload dir url and add…
Lachezar Todorov
  • 762
  • 7
  • 20
1
vote
0 answers

Flow3 PHP: Add item to empty collection

I searched a while, but until now, I wasn't able to find a suitable answer. In my "Offer" class, I have the following: /** * @ORM\OneToMany(mappedBy="offer") * @var Collection */ protected $offerItems; /** * @return Collection …
1
vote
1 answer

Validation Typo3 Flow

I have a question about the procedure of the flow validation. When I submit my form and then flow shows a validation error for example for the url input field without deleting all the already inserted user inputs from the fields. How does flow keep…
Tiero L.
  • 57
  • 11
1
vote
2 answers

What is the relationship between TYPO3 cms and TYPO3 flow?

TYPO3 CMS is an Open Source content management system and TYPO3 Flow is a PHP-based application framework, then is there any relation between TYPO3 CMS and TYPO3 Flow. Please help me to find an answer. Thanks in advance.
1
vote
0 answers

Multiple file uploads in TYPO3 Flow

I need support for the multiple attribute of file uploads () in TYPO3 Flow. So this is what I've done so far. I've an entity with a resource collection: /** * @var…
witrin
  • 3,369
  • 1
  • 21
  • 45
1
vote
1 answer

What is the standard way to get/set datetime from fluid in typo3 flow?

What is the standard way to get/set datetimes to/from fluid in typo3 flow? Is there editable html field which - like a basic f:form.textfield - will allow the datetime to be entered, edited and persisted? I know I can display a datetime with eg …
The Newbie Qs
  • 343
  • 5
  • 21
1
vote
1 answer

Typo3 flow validation error

I have problem with validation in Typo3 flow. I'm doing POST request for REST and this is action in controller for it. /** * Create Customer * * * @param int $clientId * @param string $name * @param string $phone *…
Diamond
  • 41
  • 4
1
vote
1 answer

Flow (typo3) compared to yii

I'm looking for any experiences people made using both of these frameworks. Right now I'm using Yii for almost everything, but to give Flow a shot, I thought, I ask people who worked with both of them. Can you give me any feedback and your…
DasSaffe
  • 1,828
  • 1
  • 17
  • 51
1
vote
1 answer

How to populate tables with standard records in TYPO3 flow?

I am trying to learn TYPO3 flow. And I want to develop an application which needs language models. I only need 4 of them (en, fr, de, es). So I've created a language model, but how should I populate the table with the 4 records? With migrations?…
fvosberg
  • 627
  • 9
  • 25
1
vote
1 answer

Flow3-Fluid iterate object grouped by property

I've a list of objects (question-items), each with a property named category and title. (The list of objects is ordered by its category property) With this Fluid Template I want to iterate over the question items:
1
vote
2 answers

How can I add to a collection of a new obect?

i've got an object with a ManyToMany-relation to an other object via a collection in Typo3 Flow. After create a new instance of that object (which is successfully added to the repository) I can simply add to this collection. Code snippet of abc…
Pete
  • 524
  • 3
  • 26