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
77
votes
2 answers

FLOW3 action parameters and arrays of objects

FLOW3 provides a convenient way to pass entities by ID in the URL, and get them automatically instantiated in the controller action's parameters: class PostController extends \TYPO3\FLOW3\MVC\Controller\ActionController { public function…
BenMorel
  • 30,280
  • 40
  • 163
  • 285
8
votes
2 answers

TYPO3: Pass multiple arguments to a partial from a fluid template

I have a fluid template, from where I call an often used snippet (called "partial"): Template: Partial fbLikeBox.html:
Mateng
  • 3,607
  • 5
  • 35
  • 61
5
votes
1 answer

TYPO3 Extbase: How to access "modified" flag of my object property?

I frequently use the Extbase DebugUtility (Tx_Extbase_Utility_Debugger::var_dump($object)). It displays additional data for each property, especially the "modified" flag - see screenshot. How can I access this "meta property" from within my…
Mateng
  • 3,607
  • 5
  • 35
  • 61
4
votes
4 answers

Can't find a working free xliff editor for OSX Lion

Attempts I tried: Virtaal PoEdit (not xliff but convertible) Open Language Tools TransEditor LocFactory Editor And I think I'm getting nuts. Virtaal With Virtaal it seems I can't create files (or am I to stupid ?). Also when I open the tutorial…
Allisone
  • 5,994
  • 4
  • 28
  • 47
4
votes
3 answers

Combining two QueryResults in a Extbase Repository

I'm programming a TYPO3 - extension for a website. Since I'm using the Extbase Framework I have a Repository class (Tx_Extbase_Persistence_Repository) where I do two sql queries in a row: $query1 =…
Fabian Fritz
  • 370
  • 3
  • 14
4
votes
3 answers

Implement a REST service with Extbase (Typo3)

I'm searching for a way to implement a REST-Service in an extbase extension for Typo3. I've only found old or not maintained extensions and they doesn't use extbase. So how could I get an extension that provides an API for external…
FlorianX
  • 193
  • 1
  • 2
  • 7
3
votes
3 answers

FLOW3 requires the PHP setting "magic_quotes_gpc" set to Off. (Error #1224003190)

While configuring FLOW3 on mac, I modified the php.ini in terms of setting magic_quotes_gpc = off and on restarting server I get the magic_quotes_gpc = off by browsing http://localhost:8888/MAMP/phpinfo.php But on running: $ ./flow3…
Sidra Sultana
  • 529
  • 1
  • 5
  • 20
3
votes
1 answer

Is there AOP for Yii 2?

I want to know how much time is executed every action. The easiest/ correct way would be to use AOP. I'd like to have something like this: /** * @FLOW3\Before("method(.*->action.*())") */ public function markFirstTimeTag() { // Do something…
user1134181
3
votes
1 answer

How can I override the vendor-dir for a single package in composer.json

I'm bundling a web application through composer. In my config section, a vendor dir needed by the framework (TYPO3 Flow) is defined: "config": { "vendor-dir": "Packages/Libraries", "bin-dir": "bin" }, Now I have one custom package that…
lorenz
  • 4,405
  • 1
  • 22
  • 44
2
votes
2 answers

PHP template with Flow3

Templating with Flow3 is done using Fluid templating language. Is there an integrated/easy solution to use PHP templates instead? (without having to write a template renderer myself) (to avoid misunderstandings: by PHP template I mean HTML code…
Matthieu Napoli
  • 42,736
  • 37
  • 154
  • 239
2
votes
1 answer

FLOW3 Doctrine2 :: SELECT b,count(b) FROM (SELECT a,b FROM x\y\z GROUP BY a) GROUP BY b

I'm quite new to FLOW3 and I'm very new to Doctrine. I'm just running some tests, and I want to learn or understand some techniques that I'll use later on. Now I'm stuck with this doctrine part where I want to generate some stats. $results =…
Allisone
  • 5,994
  • 4
  • 28
  • 47
2
votes
3 answers

Neos CMS installation 500 error: Specified path not found

I tried to install Neos CMS local under Windows 10 with a Wamp Apache Server. After creating the project with a composer and registering the Vhosts, I tried to run neos.demo/setup. Then I get an 500 internal server error with the message "Specified…
preissy
  • 21
  • 2
2
votes
1 answer

Are TYPO3 Flow Resources allowed with no ending?

we use the TYPO3 Flow 2.3 integrated Resource object to upload any kind of files in our project. The definition in our File object is: /** * @var \TYPO3\Flow\Resource\Resource * @ORM\ManyToOne */ protected $originalresource; And the fluid call…
Pete
  • 524
  • 3
  • 26
2
votes
0 answers

Why is this error happening? Class 'FPDF' not found -- typo3-flow

The error happens when warming up caches and is in full: PHP Fatal error: Class 'FPDF' not found in /home/shop/public_html/releases/20150122171219/Packages/Sites/Mystuff.ModelSite/Classes/Mystuff/ModelSite/Service/InvoiceService.php on line…
The Newbie Qs
  • 343
  • 5
  • 21
2
votes
1 answer

TYPO3 Neos: authentication provider for a package

There are many examples to setup an authentication provider with an login, but I can't find an example how to setup one for a package. TYPO3 Neos v1.2.x I have a package with an editor for the backend. The editor should communicate via controller.…
user2513437
  • 155
  • 10
1
2 3 4 5 6 7 8