pageTs :: TYPO3 CMS & SEO
ARM Technologies   ...  TYPO3 pageTs 

TYPO3 pageTS Config

Control your back-end features!

BE template listing

TCEFORM.pages {
    layout.disabled = 1
    backend_layout {
        label = Page Template (this page only)
    }
    backend_layout_next_level {
        label = Sub-page templates
    }
}

Label your content layout listing

TCEFORM.tt_content {
    layout{
          altLabels.0 = Default
          altLabels.1 = Feature block
          altLabels.2 = Main Content (white)
          altLabels.3 = All header
      }
}

Add new content label options

TCEFORM.tt_content {
    layout{
          addItems.4 = Top margin
          addItems.5 = Floating Block
      }
}

Remove options from section frame

TCEFORM.tt_content {
    section_frame {
           removeItems = 1,5,6,10,11,12,20,21
    }
}

Adding new css class to RTE

RTE {
    default {
        classesParagraph := addToList(yourcssclass)
        proc.allowedClasses := addToList(yourcssclass)
        buttons {
            blockstyle {
                tags {
                    p {
                        allowedClasses := addToList (yourcssclass)
                    }
                }
            }
        }
    }
}