This is what I want to do: on a given page, I want to display all content elements of the first child page of a given page. I cannot simply use a shortcut page, because I need to display other content elements after the ones from the sub-page. How can I do this?

Here is a snippet of how I think I could do it, but I don't know how to build the select. Is there a better way?

# save current content
tmp.pagecontent < page.10.subparts.main-content

# clear the content of the main column
page.10.subparts.main-content >

# build a new object for this column as content-object-array
page.10.subparts.main-content = COA
page.10.subparts.main-content {
  10 = CONTENT
  10.table = tt_content
  10.select {
    # what should I put here?
  }
# re-insert the normal pagecontent to the page  
20 < tmp.pagecontent
link|improve this question

80% accept rate
Are using Templavoila? you could reference the items. – konsolenfreddy Jun 6 '11 at 5:57
No. I use the Template Auto-parser. I cannot simply reference the items, because what I want is content of the first subpage, and the first subpage can change in time, when I add new pages. So it's not always the same items I want to display. – Charles Brunet Jun 6 '11 at 14:53
"select" behaves like a SQL query. Look at the last example with pidInList here wiki.typo3.org/TSref/CONTENT Using RECORDS instead of CONTENT may be more suitable for your case. wiki.typo3.org/TSref/RECORDS – Rito Jun 7 '11 at 14:12
feedback

2 Answers

You should make 2 queries. First : get the ID of the first child page.

Second : get all content elements of that page.

The more clean way - is to use tiny userFunc.

If You would like to do it with TypoScript anywaty, there is a doc for the latest TS API for select : http://typo3.org/documentation/document-library/references/doc_core_tsref/4.5.0/view/1/5/#id2621093

link|improve this answer
I cannot figure out how to pass result from first query to second, in TypoScript. I will explore userFunc. It is something I will need to learn one day anyway. – Charles Brunet Jun 15 '11 at 11:57
I've saw Your version. It looks fine ;) – Fedir Jun 17 '11 at 15:57
feedback
up vote 1 down vote accepted

I finally succeed! Not sure though it is the best way. What do you think about it? Should I put the second select into userFunc too?

fileadmin/userfunc/mailArchive.php

<?php
class user_mailArchive {
    function getFirstChild($content, $conf) {
        $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
                'uid',                         // SELECT ...
                'pages',                       // FROM ...
                'pid='.intval($conf['pid']),   // WHERE...
                '',                            // GROUP BY...
                'sorting',                     // ORDER BY...
                '1'                            // LIMIT ...
            );
        $row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
        if ($row) {
            return $row['uid'];
        }
        else {
            return '';
        }
    }
}

TS template

# fill the content of the main-column to a tmp.object
tmp.pagecontent < page.10.subparts.main-content

# clear the content of the main column
page.10.subparts.main-content >

includeLibs.mailArchive= fileadmin/userfunc/mailArchive.php

# build a new object for this column as content-object-array
page.10.subparts.main-content = COA
page.10.subparts.main-content {
  10 = CONTENT
  10 {
    table = tt_content
    select {
      pidInList.cObject = USER
      pidInList.cObject {
        userFunc = user_mailArchive->getFirstChild
        # parent page ID
        pid = 139
      }
      orderBy = sorting
    }
  }

# re-insert the normal pagecontent to the page  
  20 < tmp.pagecontent
}
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.