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 Extbase: Operand should contain 1 column(s):

i want to add() a message to the database in my controller. That works so far. I've got a column called "message_tags" in which i save an array. The array is: array(5 items) 0 => 'dfsdfsd' (7 chars) 1 => 'dsfsdf' (6 chars) 2 => 'sdfdsf' (6 chars) 3…
Pascal Cloverfield
  • 561
  • 1
  • 6
  • 20
0
votes
1 answer

Typo3 fluid view as a modal dialog

For my typo3 extbase extension, I have a view which just a form for uploading pictures.On form submission, the user is redirected to another view. Now, I want to display this fluid view with the form as a modal dialog.Is this possible and if yes,…
user1107888
  • 1,481
  • 5
  • 34
  • 55
0
votes
1 answer

TYPO3 Extbase: Check if Database entry already exist

how can i make a database query with extbase to check if a database entry already exist? I know how to do that with php but not with extbase syntax. I want to add a user to the database. That works. But the user should only be added if the regId…
Pascal Cloverfield
  • 561
  • 1
  • 6
  • 20
0
votes
1 answer

TYPO3 mod.php access without beeing logged in (Extbase)

i'm writing a TYPO3 extension with extbase & fluid which should be able to send push notifications to android devices. For this i need to catch a POST request from google which contains a registerID as a string. So, i had the idea to send the POST…
Pascal Cloverfield
  • 561
  • 1
  • 6
  • 20
0
votes
1 answer

How to access local paths on TYPO3 using eID

I have an image map on my frontend and from there I need to access some images that are stored on different folders under the fileadmin directory. And I'm trying to do it with eID, following this…
Probandot
  • 195
  • 1
  • 16
0
votes
1 answer

Extbase: Get access in domain B to session from domain A

i am currently developing an shop extension in Extbase 1.3/Typo3 4.5 where the checkout process will be handled under a different domain than the shop (domain A has shop and HTTP, domain B has checkout and HTTPS). In the checkout process i need to…
jiriki
  • 471
  • 1
  • 4
  • 11
0
votes
1 answer

Create a table from Tx_Extbase_Persistence_QueryResult using fluid

I'm using typo3 and learning how it works. I'm trying to build a table with some pictures, but all that I have tried didn't work. So I will like to have some suggestions about how this can be accomplished. Here is what I have: On my controller I get…
Probandot
  • 195
  • 1
  • 16
0
votes
1 answer

TYPO3 Extbase: access $BE_USER

How can I access the $BE_USER variable inside my Extbase controller on the front-end? I just want to know the back-end user ID which is logged in. http://typo3.org/documentation/document-library/core-documentation/doc_core_api/4.1.0/view/3/6/
Arek van Schaijk
  • 1,432
  • 11
  • 34
0
votes
2 answers

TYPO3 Extbase: How to render the pagetree from my model?

I want to create some kind of sitemap in extbase/fluid (based on the pagetree). I have loaded the pages table into a model: config.tx_extbase.persistence.classes.Tx_MyExt_Domain_Model_Page.mapping.tableName = pages I have created a controller and…
Arek van Schaijk
  • 1,432
  • 11
  • 34
0
votes
1 answer

Rand() in TYPO3 Extbase Query

I'm using Extbase in TYPO3. I want to create some repository function which can get a random record from the database. Is there a way to resolve this with the Extbase Query Language?
Arek van Schaijk
  • 1,432
  • 11
  • 34
0
votes
1 answer

Print values inside Fluid Templates

I have a fluid template and i am passing an array to this fluid template. I need to manipulate that array with in that fluid template file. My aim is to print each value of that array in the template file as shown below:
Siva
  • 481
  • 7
  • 26
0
votes
1 answer

TYPO3 Extbase Framework - Repository Directory Function & Documentation

I'm new to TYPO3 Extbase framework. I'm unsure about what the purpose of the repository directory is. What is its purpose? Also, where can I find some documentation for this framework?
Siva
  • 481
  • 7
  • 26
0
votes
3 answers

TYPO3 Extbase: Nested models in fluid

I'm writing my first extbase extension for TYPO3 with nested models at the moment. Following models exists: Author - attributes: name and description News - attributes: title, date, author The author is included in the news model like this /** *…
Patrick Hafner
  • 129
  • 3
  • 12
0
votes
2 answers

Extbase AJAX call only works in some Actions

While I managed to get a working AJAX call, it won't works with my already created actions, not on a newly created one. My Typoscript looks like this: lib.AJAXPrototype= PAGE lib.AJAXPrototype { typeNum = 896571 config { …
user828591
  • 1,212
  • 2
  • 17
  • 32
0
votes
1 answer

deleteAction on a deleted ModelInstance in Extbase fails

For example the delete-link was clicked twice or from different users. While the first click will correctly remove my object the second one will fail (as it is outdated) before my deleteAction is Called. How can I prevent this? /** * action delete …
AdON
  • 33
  • 1
  • 7
1 2 3
94
95