Task1. In TypoScript I need to get a page title for a given page id {$my_page_uid} Task2. This page title should be recieved according to the current language

I need this title in the form like temp.pTitle, so I can make then page.10 < temp.pTitle

link|improve this question
Just to get updated: Are any of these answers working for you? – Mateng Nov 21 '11 at 19:02
feedback

3 Answers

At a first glance I thought: Haha! That's trivial... but actually it's not. Here is a clever solution for the first part I found in a german forum:

temp.pTitle = HMENU
temp.pTitle {
  special = list
  special.value = {$my_page_uid}
  1 = TMENU
  1 {
    NO {
      doNotLinkIt = 1
    }
  }
}

Don't know if this solves the language part, but it should.

link|improve this answer
That's clever, +1 – konsolenfreddy Jul 8 '11 at 8:47
Why would you do it as HMENU? Because of the language requirement? – cascaval Jan 31 at 13:46
Yes, otherwise you could just use data = DB : pages : {$my_page_uid} : title – Mateng Mar 6 at 14:50
feedback
lib.pagetitle = RECORDS
lib.pagetitle {
  source.data = page:uid
tables = pages
conf.pages = TEXT
conf.pages.field = nav_title
}

To get current page title:

lib.pagetitle = TEXT
lib.pagetitle.field=title
link|improve this answer
feedback

There's an even simpler solution..

10 = TYPOLINK
10.parameter = [your_page_id]

When you omit the .value or .field, it automatically takes the page title as value. This even works with multiple languages.

link|improve this answer
There is no "doNotLinkit" Property in stdWrap. – maholtz Nov 8 '11 at 10:39
sorry, should be in typolink – pduersteler Nov 16 '11 at 9:05
feedback

Your Answer

 
or
required, but never shown

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