I'm using Typo3 4.5.3 and I have image files in a directory from which I want to randomly select one to display on the current page, but I can't seem to get the typoscript right to make listnum = rand work. Here's my extension template:

# Pick a random image to display
temp.banner = IMAGE
temp.banner {
  file {
    height = 165
    width = 954
    import {
      filelist = {$templatePathPrefix}images/banners | jpg,jpeg,png,gif | name | | 1
      listNum = rand
    }
  }
  params = class="bannerPic"
}

If I change the listnum setting to 0, 1, etc. it inserts the corresponding img HTML into the page. Setting it to 'last' also works, but rand always inserts the first image no matter how many times I refresh. Since I can select specific images (0, 1, ...) I know the general setup works, just not the random selection.

I've seen TS for various other uses of rand which wrap the outer object in a COA_INT object, but that didn't work for me either. Did I miss something about where to place the listNum = rand? I'm pretty new at Typo3 so lots of it is still pretty opaque to me at this point (or does it show?). Thanks for any insight you can provide.

link|improve this question
feedback

2 Answers

mak_stdwrapextended extension adds the possibility to use rand with listNum.

Works well on 4.5.

link|improve this answer
feedback

I would not recommend you to do a random selection via TypoScript. Since you want a random image everytime you load the page, your random element must be a USER_INT or COA_INT element and is therefore not cacheable.

A simple solution for this is to do it via JavaScript. You define a default image if JavaScript is not available on the client, and a JavaScript that randomly select an image. With this solution, you get a random image everytime, and your content is fully cacheable.

The following TypoScript code can give you some inspiration for this. It basically reads out Image-Elements from the border collumn and generates JavaScript to output them randomly. Also, the images are linkable.

lib.teaser = COA
lib.teaser.10 = CONTENT
lib.teaser.10 < styles.content.getBorder
lib.teaser.10 {
    slide = -1
    table=tt_content
    select{
        begin = 0
        max = 1
        #language
        languageField=sys_language_uid
        #from wich column
        where=colPos=3
    }
    wrap=<div class="teaserimage">|</div>

    renderObj=COA

    #image with gallery function
    renderObj.10 = COA
    renderObj.10 {
        stdWrap.required=1
        # get image
        10 = IMAGE
        10 {
            #if not empty
            required=1
            file.import=uploads/pics/
            file.import.field=image
            #file.width=266
            #file.height=180
            file.import.listNum = 0 
            stdWrap.insertData=1
            params = id="imgbig_{TSFE:currentRecord}"
            imageLinkWrap < tt_content.image.20.1.imageLinkWrap
            imageLinkWrap.typolink.ATagParams = id="link_imgbig_{TSFE:currentRecord}"
            imageLinkWrap.typolink.ATagParams.stdWrap.insertData=1
        }

        # standard image configuration from tt_content
        10.altText < tt_content.image.20.1.altText
        10.titleText < tt_content.image.20.1.titleText
        10.longdescURL < tt_content.image.20.1.longdescURL

        # random function for gallery images
        30 = COA
        30 {
            stdWrap.required=1
            stdWrap.dataWrap(
            <script type="text/javascript">
            /* <![CDATA[ */
            var imgArray = new Array(|);
            var randnum = Math.round(Math.random()*(imgArray.length-1));
            document.getElementById('imgbig_{TSFE:currentRecord}').src ='uploads/pics/' + imgArray[randnum];
            /* ]]> */
            </script>
            )

            # first gallery image
            10 = TEXT
            10.field = image
            10.listNum.splitChar=,
            10.listNum=0
            10.if.isTrue.field=image
            10.if.isTrue.listNum=1
            10.if.isTrue.listNum.splitChar=,
            10.dataWrap = "|"


            # other gallery images  
            20 = TEXT
            20.field = image
            20.split {
                token = ,
                cObjNum = 1
                1 = COA
                1.if.isPositive.data = TSFE:register|SPLIT_COUNT
                1 {
                    10 = TEXT
                    10.data = current:1
                    10.dataWrap = ,"|"
                }
            }
        }
        # random function for gallery links
        40 = COA
        40 {
            stdWrap.required=1
            stdWrap.dataWrap(
            <script type="text/javascript">
            /* <![CDATA[ */
            //var imgLinkArray = new Array(randnum);
            var imgLinkArray = new Array(|);
            if(document.getElementById('link_imgbig_{TSFE:currentRecord}')) document.getElementById('link_imgbig_{TSFE:currentRecord}').href = imgLinkArray[randnum];
            /* ]]> */
            </script>
            )

            # first gallery link            
            10 = TEXT
            10.field = image_link
            10.listNum.splitChar=,
            10.listNum=0
            10.dataWrap = "|"
            10.typolink.parameter.field = image_link
            10.typolink.returnLast = url

            # other gallery links   
            20 = TEXT
            20.field = image_link
            20.split {
                token = ,
                cObjNum = 1
                1 = COA
                1.if.isPositive.data = TSFE:register|SPLIT_COUNT
                1 {
                    10 = TEXT
                    10.data = current:1
                    10.dataWrap = ,"|"
                    10.typolink.parameter.data = current:1
                    10.typolink.returnLast = url
                }
            }
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.