soulik

Typo3 Image with FAL

Jun 22nd, 2014
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. templates.images = CONTENT
  2. templates.images {
  3.     table = tt_content
  4.     select {
  5.         where = colPos=0
  6.         orderBy = sorting
  7.     }
  8.     renderObj = FILES
  9.     renderObj {
  10.         references {
  11.             table = tt_content
  12.             fieldName = image
  13.         }
  14.         renderObj = IMAGE
  15.         renderObj {
  16.             file {
  17.                 import.data = file:current:publicUrl
  18.                 width = 320c
  19.             }
  20.             titleText.data = file:current:title
  21.             stdWrap.typolink.parameter.data = file:current:link
  22.         }
  23.     }
  24. }
  25.  
  26. # Default PAGE object:
  27. page = PAGE
  28. page.10 < templates.images
Advertisement