extbase Questions

7

Solved

plugin.tx_xxx { setting { storagePid = 23 } } I want this TYPO3 settings in utility file. Please help me.
Magalimagallanes asked 15/6, 2015 at 7:50

11

Solved

$query = $this->createQuery(); return $query->matching($query->like('linker', "$linkerKey=$linkerValue")) ->setOrderings(array('crdate' => $ordering)) ->execute(); How can i...
Hasp asked 22/2, 2011 at 7:30

5

I am working on a typo3 extension and I want to generate an url from the page id. Currently I create the url by appending index.php?id=ID to $GLOBALS['TSFE']->baseURL. Is there any other way t...
Hurds asked 6/1, 2015 at 10:49

2

Solved

There are 2 functions in TYPO3 which seem to more or less do the same: ExtensionManagementUtility::addModule /** * Adds a module (main or sub) to the backend interface * FOR USE IN ext_tables.ph...
Controller asked 24/4, 2018 at 12:36

3

I got a problem with many TYPO3 extensions with ordering query results by Uid´s which come from a flexform Plugin setting in the Backend. I try to create a query what gives me the result uid´s in t...
Sheply asked 28/9, 2017 at 14:21

3

I'm practicing on a very easy Extbase Extension and used a FlexForm to get three formula fields. One of them is called "code" which should go to the EmbedderController.php and then to the...
Gulgee asked 12/7, 2015 at 16:27

5

Solved

$GLOBALS['TSFE']->pageNotFoundAndExit(''); is currently used, but instead I would like to redirect to a page ID. With the command redirectToUri, I could find no solution, or didn't work. Co...
Keil asked 11/11, 2016 at 15:44

2

Solved

I try to compare the start date of an event with the current date in order to only display the next events. This is my try in the eventRepository: public function findNext() { $query = $this->...
Pianissimo asked 19/10, 2014 at 14:7

2

Solved

I got TYPO3 v10.2 running without Composer. I am creating an extension and want to include some third party PHP libraries into my Extbase Extension. I already read in the TYPO3 docs that those shou...
Potful asked 22/1, 2020 at 9:39

5

I'm trying to get started with TYPO3 extensions and was following this tutorial to get to see the basics. In the backend everything works fine, but on the front end I get an error: Oops, an err...
Octagonal asked 9/2, 2017 at 9:55

3

Solved

Precondition The ext:news list view plugin is on page www.domain.com/news [ID 9] and the detail view on www.domain.com/article [ID 39]. Following the official example (docs.typo3.org) I tried th...
Coffeecolored asked 29/1, 2019 at 11:42

3

Solved

I have the domain models Basket and Article. If I call the following I receive the articles in the basket. $articlesInBasket = $basket->getArticles(); How can I use the TYPO3 standard attribu...
Parasang asked 5/12, 2012 at 22:21

2

Solved

I am new to extbase(MVC) Framework , How can we get typoscript values in our extension : Eg : suppose if i have some typoscript values like: plugin.tx_some-extname.somevlaueX = XXXX plugin.tx_som...
Braca asked 7/1, 2013 at 5:31

3

Solved

I have the hypothetical Zoo extension in which I've Animal model with photo field and FrontEnd (FE) plugin with typical CRUD actions. photo field is typical FAL's FileReference and it works perfect...
Postremogeniture asked 24/2, 2015 at 23:1

2

Solved

Scenario: I have following model: ContactPerson has a relation to FrontendUser and is the owning side of the relation. Now I have following problem: I am activating/deactivating the FrontendUse...
Lymphoma asked 12/10, 2016 at 8:13

2

Solved

I am using TYPO3 7.6.11 and indexed_search 7.6.0. I use the extbase plugin for indexed_search and in the output it escapes the HTML-Tags to mark the searchword. For example, when I search for "sea...
Repetend asked 8/5, 2017 at 13:12

1

Solved

I recently upgraded from TYPO3 7.6 to 8.7 and discovered that using <![CDATA[ { ]]> to escape a curly brace in Fluid no longer works. Any advice is appreciated?
Unaccompanied asked 15/4, 2017 at 10:37

4

Solved

I have a JSON string with some data I want to render in a template. As Fluid arrays are notated in JSON too, I thought I might just take that JSON string and hand it over to fluid, telling it to tr...
Tomtoma asked 3/12, 2014 at 14:42

4

Solved

I have an Extbase Model Article and a 1:n Relation Product. In Article TCA i have an inline field configuered. In my Article Template I want to display all related Products. These are oredered by u...
Crosspurpose asked 12/9, 2014 at 11:35

4

Solved

In my extbase/fluid project,in addition to standard actions such as create,delete,list etc, I want to create a duplicate of a model class object which are stored in a repository. Using findall(), a...
Seventeenth asked 17/9, 2012 at 16:16

1

Solved

I am using TYPO3 7.6.11 and getting the following error when I am trying to call showAction(). Validation failed while trying to call Vendor\Extension\Controller\MyController->showAction(). I...
Downswing asked 13/11, 2016 at 9:3

1

Solved

I have a working Extbase extension in TYPO3 V6.2, which stores Products. Now I want to learn about using Signal/Slot (Extbase variant of Hooks). I wonder why the example don't work. When I update ...
Fulbert asked 30/5, 2015 at 9:22

2

Solved

in pi based Extension I have: $this->pi_getLL('languagekey') to get my translated variable. What is the Extbase code for that? I know how to do this in Fluid Template, but I need it in the Re...
Rambort asked 16/10, 2012 at 15:11

2

Solved

I have an extension with a list and show action. Currently this extension can appear on multiple pages: /page-1/ /page-2/subpage/ I have configured realurl like that: $GLOBALS['TYPO3_CONF_VARS'...
Storytelling asked 1/10, 2014 at 13:30

5

Solved

Is there any way to create AJAX calls in Extbase extension without using of page typeNum?
Weathertight asked 15/1, 2014 at 14:17

© 2022 - 2024 — McMap. All rights reserved.