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
1
vote
1 answer

Correct place to exend FLOW3 Bootstrap?

currently I am trying to register a Doctrine-Eventlistener for every request in my FLOW3-Package. Some research pointed me to the Package.php, but unfortunately the ObjectManager is not available when the boot()-Method is called. I searched the…
phpwutz
  • 11
  • 1
1
vote
3 answers

TYPO3 Extbase Controller/Model Validation fails

Environment: Mac OS X Lion, PHP 5.3.10, MySQL 5.X, TYPO3 4.7.1, Extbase 4.7.1, Fluid 4.7.0 I have been struggeling for a few days with a strange validation error in extbase. Tx_Foo_Controller_FeUserController contains the two following actions: …
kiri
  • 63
  • 1
  • 6
0
votes
1 answer

Use Flow3 on webhosting w/o shell

i used extbase/fluid to build a typo3 extension and i liked it. I'm planning a web-project and would like to use Flow3 as framework. Is ist possible to use Flow3 on a hosting solution w/o shell access? Maybe develop local and put everything on the…
stolle
  • 1
  • 1
0
votes
2 answers

Error while configuring FLOW3

While configuring FLOW3, I get the following error #1315561483: It seems like the PHP binary "C:\php/php" cannot be executed by FLOW3. Set the correct path to the PHP executable in Configuration/Settings.yaml, setting…
Sidra Sultana
  • 529
  • 1
  • 5
  • 20
0
votes
1 answer

Flow3 / Zend Framework - Content for different pages

I think the answer to my question is independent from the framework because the View functionality is rather similar between those two. But what I am using is Flow3. I have a layout with the standard elements like the header, footer, navi, etc. Then…
m0tv
  • 31
  • 7
0
votes
2 answers

ZF2 Runtime Constraints like Flow3

How would Flow3 runtime constraints be done ZF2? Here's snippet from Flow3's documentation. Runtime constraints Runtime constraints are a very poweful feature of FLOW3’s AOP framework. A full reference of the possibilities can be found in the …
Richard Ayotte
  • 4,671
  • 1
  • 30
  • 33
0
votes
1 answer

Flow3 PersonName Rollback

I have a problem in the Security Account/Party Module of Flow3. I've tried to change the first and last name of a Person as Party: $person = $account->getParty(); $name =…
ridcully
  • 294
  • 1
  • 9
0
votes
1 answer

Typo3 Fluid ViewHelper for random page

I am making my first site with typo3 and I need to place a boxes with random pages on my first page. I made an frontend extension and I have a ViewHelper in it wich displays a box with HelloWorld text in it. My question is how to get the information…
Lachezar Todorov
  • 762
  • 7
  • 20
0
votes
2 answers

Localization of Domain Models in Neos / Flow

A website I am currently developing with Neos / Flow includes a self-developed shop system implemented as a Flow Plugin. The products, variants and vouchers are kept as domain models. Since the customer wants to provide their website in different…
0
votes
2 answers

Problems with orx doctrine

I have something like: $languages = ["English", "German", "Spanish"]; The Job Entity: /** * @Flow\Entity */ class Job { /** * The name of first language for the job (M:1 unidirectional) * * @var \PATH\Language *…
Tiero L.
  • 57
  • 11
0
votes
1 answer

Many-to-Many (M:N) relation for more than 2 tables

I have 3 tables namely Organization,People,Roles I want to have many-to-many relation between: Organization, People, Roles Example: Organization1 - People1 - Roles1 Organization1 - People2 - Roles1 Organization2 - People2 - Roles2 In other…
punith
  • 99
  • 1
  • 5
0
votes
1 answer

Complex If condition in typo3 fluid template inside the css class

I'm facing an issue in the following code
Currently the above code check if the panel.id equals to 123 then apply the icon-update to…
Mujahid
  • 1,177
  • 5
  • 29
  • 58
0
votes
1 answer

How to pre-validate whole models in TYPO3 Flow

We build a TYPO3 Flow model like this: /* * * This script belongs to the Flow package "DS.Datenbank". * * …
Pete
  • 524
  • 3
  • 26
0
votes
1 answer

Error: 'Object of type "TYPO3\Media\Domain\Model\Image" with identity "image.jpg" not found.'

What does this error exactly mean? 'Object of type "TYPO3\Media\Domain\Model\Image" with identity "image.jpg" not found.' I have a form like this:
Tiero L.
  • 57
  • 11
0
votes
1 answer

Import image resource after imagejpeg

I am trying to import a resource which I persisted via imagejpeg... $imageFileName = "tmp_image_path.jpg"; imagejpeg($thumb, $imageFileName); $newResource = $this->resourceManager->importResource($imageFileName); $image = new…
Tiero L.
  • 57
  • 11