Questions tagged [fal]

File Abstraction Layer for TYPO3

107 questions
7
votes
3 answers

TYPO3 6.2 - how to create FileReference in frontend (FE)?

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 perfectly in backend (BE) with common TCA IRRE config. I'm…
biesior
  • 55,576
  • 10
  • 125
  • 182
5
votes
1 answer

FAL FileReferences aren't localized in FE

In TYPO3 6.2 in my model I have a common field for files called documents, it's ObjectStorage of \TYPO3\CMS\Extbase\Domain\Model\FileReference nothing unusual :) The problem is on localized pages, just when I create a localized version of my obj all…
biesior
  • 55,576
  • 10
  • 125
  • 182
5
votes
1 answer

Typo3 FAL missing alternative text field in Extension

i am using FAL in my Extension and cant get the alternative field showing. Please look at these 2 images to have a better view: Image 1: This is the view in my extension Image 2: This view is in Typo3 Page Ressource Tab As you can see the image is…
nstungcom
  • 347
  • 2
  • 13
5
votes
1 answer

Set Upload Folder when using FAL in TCA

Is it possible when using FAL, to set the upload destination folder directly in the TCA column? My configuration looks like this at the moment: 'images_outdoor' => Array ( 'exclude' => 1, 'label' => 'Outdoor: ', 'config' =>…
4
votes
6 answers

TYPO3 FAL in Flexform

I have a flexform with following code: group
180690
  • 181
  • 2
  • 13
4
votes
3 answers

Extending sys_file_reference (FAL)

I want to extend sys_file_reference with a own field. So i created the field and the TCA. In the backend the field is usable, but i cant refer to the field in my fluid template. ext_tables.php: CREATE TABLE sys_file_reference ( nofollow int(11)…
lisardo
  • 1,322
  • 16
  • 31
3
votes
4 answers

TYPO3 Gridelements render FAL Image using Fluidtemplate

I'm using TYPO3 8.7 and the latest extension gridelements (8.2.3). Now I want to show/render an image in my FLUIDTEMPLATE.. - but I don't know how?!? Here's my TypoScript: tt_content { gridelements_pi1 = COA gridelements_pi1 { 20 { …
user2310852
  • 1,654
  • 1
  • 25
  • 52
3
votes
1 answer

How can I get the category object in Fluid of Typo3 Content Element Pictures?

after a long time of Google, I can get the categories of FAL Objects in Typo3 7.6 Fluid. But I can only return a String. I want to get an object like {data}. What I do: TypoScript lib.category = CONTENT lib.category { table=sys_category …
Burner
  • 981
  • 19
  • 41
3
votes
2 answers

Property Mapping Exception in Helhum upload example

I am using helhum File Upload Demo to upload the images. But currently i got below error. Exception while property mapping at property path "images.0":Property "name" was not found in target object of type "XXXX\XXXXX\Domain\Model\FileReference…
Vishal Tanna
  • 1,165
  • 2
  • 12
  • 36
3
votes
1 answer

How to get filename in Typo3 solr extension with FAL and own Extbase extension

Before FAL, I can get the filename of an image from my own Extbase extension in the solr config file "typo3/ext/solr/Configuration/TypoScript/Solr/setup.txt" via index { queue { tx_myextension = 1 tx_myextension { …
SenioreT
  • 175
  • 2
  • 9
3
votes
5 answers

Refer to media field of original language in TYPO3

In TYPO3 6.2 (just upgraded from 4.5) I have a TMENU with Images, using a cObject in NO to build the menu as desired. It works in the main language, but in the second language's frontend, the images are not rendered - unless they are filled in in…
Urs
  • 4,984
  • 7
  • 54
  • 116
2
votes
2 answers

Frontend image upload and build a file reference in typo3

First, im really new at typo3. I build a extension with extension builder, and now i want to upload images from the Frontend. The upload and the creating Folder function is working fine. But typo3 doesnt output the file after upload. According to…
itanimulli
  • 33
  • 5
2
votes
1 answer

Typo3 CKEditor image from FAL

I set up a fresh TYPO3 8.7.4 installation with CKEditor and rte_ckeditor_image to get images from FAL. In the documentation from rte_ckeditor_image it says: The maximum dimensions relate to the configuration for magic images which have to be set…
Marcel
  • 627
  • 7
  • 25
2
votes
1 answer

How to get translated FAL image in extbase (not in Fluid) in TYPO3?

I am trying to get translated FAL image in extbase but it gives me default language FAL image. I am using TYPO3 7.6.16. Its a multi-language website. I have created 2 website languages 1) English, 2) Spanish and the default one is Dutch. Currently…
Ravi Sachaniya
  • 1,641
  • 18
  • 20
2
votes
1 answer

FAL upload only if validation successfully

In past i have implement a FAL frontend upload in different ways, for example with own file reference models and so on. I've also tried the upload example extension of helhum https://github.com/helhum/upload_example. But the files would be saved…
1
2 3 4 5 6 7 8