Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to use Typoscript condition to assign a different value to a TypoScript TEXT if a GET variable is empty ?

Something like that :

xxxx.1 = TEXT
[globalVar = GP:print != ""]
xxxx.1.value = Absent
[else]
xxxx.1.value = Present
[end]

Of course here the != "" doesn't work, so what should I use instead ?

share|improve this question

2 Answers

up vote 1 down vote accepted

Here is an example with "if":

1 = TEXT
1 {
    value = Absent
    override = Present
    override.if {
        isTrue.data = GP:print
    }
}
share|improve this answer
But is this is a condition? It looks like a complicated default value? – Phpdna Aug 10 '12 at 12:06
That is not a condition. Also note that this will be cached. A condition could be [globalVar = GP:print = 1]. So your link would have to append "?print=1". – Shufla Sep 13 '12 at 13:14

At first there is no != in typoscript. You can only use >, <, = for conditions.

For your needs you can use this:

[globalVar = GP:view = print]

[end]

Just define a Variable "view" which can become the value "print".

  • You can also work with "if" and "override", "ifEmpty" and "required".
  • Here are some other examples of conditions in typoscript: http://www.pi-phi.de/19.html
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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