Questions tagged [extbase]

Extbase is a TYPO3 CMS extension development framework working closely with TYPO3 Fluid and TYPO3's Extension Builder.

Extbase is a TYPO3 CMS extension development framework written in PHP . Its purpose is to be the foundation of model-view-controller driven extensions. It replaces the older TYPO3 pibase extension development methodology. Extbase works closely with the TYPO3 Fluid templating engine, and with the TYPO3 Extension Builder.

Resources

1425 questions
0
votes
1 answer

Typo3 TCA custom table

I have this situation, I have one offer, and that offer have n number of dates, and n number of options. So I have two additional tables for offer. And third one, which is a price, but price depends of date, and offer. And it is like this: | …
smitrovic
  • 451
  • 1
  • 7
  • 23
0
votes
1 answer

Insert fe_user uid in selectwhere statement

I'm trying to insert the currently logged in fe_user's UID into a typoscript select statement. I need the total record count based on a few conditions, and get only the number of records that belong to the current user (by recipientuseruid). There's…
R_K
  • 377
  • 2
  • 15
0
votes
1 answer

FAL saving image in backend module does not set the uid_local

I have a backend module that does some data transfer from an old 'profile' database to TYPO3. For the images, I first renamed them and placed them in a storage. The records of the profiles also have been copied and are stored in the DB. I then get…
rob-ot
  • 1,264
  • 8
  • 10
0
votes
1 answer

Use extbase service in sr_feuser_register hook

I have a hook that gets successfully called class tx_srfeuserregister_MyHooksHandler { public function registrationProcess_afterSaveCreate ($recordArray, &$invokingObj) { var_dump($recordArray); //i get here } } thanks to being registered…
Gonfi den Tschal
  • 1,754
  • 1
  • 20
  • 29
0
votes
1 answer

Why does my TYPO3/Extbase 6.0 form always redirect to the welcomeAction?

In my TYPO3 / Extbase 6.0 extension, I created a SermonController with two actions: welcomeActionand submitAction. In my welcomeAction, I'm creating a form using the following code:
0
votes
1 answer

TYPO3 Custom css class for menu links

I'm developing a new website on TYPO3 6.2 using the Bootstrap Package. I want to add a custom css class to menu links via backend and print the CSS classes in my template. So if I go on the Typo3 backend: Page > Any page Properties > Appearance or…
mvetter
  • 133
  • 2
  • 16
0
votes
1 answer

Fluidpage: Error when extending an extbase model

I was trying to extend tx_news with some extra fields and was getting an error so I installed this extension to see if that worked: https://github.com/cyberhouse/t3ext-newsauthor I get the same error on the news pages with my extension and the…
anteatersa
  • 1,449
  • 2
  • 12
  • 18
0
votes
0 answers

why isn't the pid getting saved to the database in my typo3 extension?

When I save a new object the pid field in my db stays at 0, even when I use $newCoupon->setPid( $this->settings["COUPONSPID"]); before the call to $this->couponRepository->add($newCoupon); I had previously set my repo to not respect…
The Newbie Qs
  • 483
  • 8
  • 22
0
votes
1 answer

Extension builder overwrite fe_user TCA

If I try to extend fe_user table by creating a new Model Object on extension builder in Typo3 6.1.7, it overwrites TCA by writing those lines in ext_tables.php of my…
0
votes
1 answer

Typo3 Fluid: use TS-settings in configuration-tag

I've got the paginationwidget And i want to insert the value of…
sinini
  • 1,403
  • 3
  • 19
  • 27
0
votes
2 answers

Typo3 - protect controller action with htaccess

Is there a way to password protect a specific controller (action) in typo3? I want to provide a basic REST service consisting in a standard controller, but it shouldn't be accessible to everyone, but only to the ones who know the user/pass.
cili
  • 1,037
  • 2
  • 19
  • 34
0
votes
1 answer

Typo3 6.x extension Cache issue with extbase eID ajax data passed to modal

The data from ajax (json) is fine and up to date, but the data shown in my modal is the one from the first page load. The data in "console.log" ist correct. Seems to be a chache issue? $('.showCallhistory').click(function(e) { var callsId =…
metaxos
  • 151
  • 1
  • 16
0
votes
1 answer

Typo3 Extbase: Adding subcategory changes alls subcategories names to number values

I have a problem with my extbase extension: I have a category and a subcategory (1:n), but if I edit my category and add a new subcategory, all my subcategory names will change to numbers, any ideas?
Ralf
  • 836
  • 1
  • 9
  • 32
0
votes
2 answers

how can i make update, select and insert query in extbase fluid?

how can i make update, select and insert query in TYPO3 extbase fluid. please help me by giving this answer.
Ashish Patel
  • 1,011
  • 13
  • 27
0
votes
1 answer

How to achieve N:M Relations with Attributes in Extbase?

i was just trying to achieve a N:M relation between two of my Domain Models with an attribute. I tried this Tutorial ( sorry, it's german, but the code is fine. ) and everything works fine in the backend and the database (datarecords are created…