wrapItemAndSub for GMENU

Posted by & filed under TYPO3.

wrapItemAndSub option was available for TMENU object, and could be used to wrap the current item, and all its sub-items. This option is now available for GMENU object as well. lib.graphMenu = HMENU lib.graphMenu {    1 = GMENU    1 {       wrap = <ul>|</ul>       NO {          allWrap = <li>|</li>          XY = [10.w]+5,18          10 = TEXT          10… Read more »

Domain redirection status code

Posted by & filed under TYPO3.

When redirecting a domain, its now possible to select the HTTP status code that will be passed along with the redirection. More info: RFC #9400: Integrate jb_status_code in the TYPO3 core http://bugs.typo3.org/view.php?id=9400

New options in eID

Posted by & filed under TYPO3.

Scripts called through eID have always been limited in terms of functionality, however new features give more options: tslib_eidtools::initLanguage() initializes the language, making localization features easily accessible tslib_eidtools::initTCA() loads TCA tslib_eidtools::getTSFE() initializes the main frontend class TSFE More info: RFC: #9318: Enhance and fix tslib_eidtools http://bugs.typo3.org/view.php?id=9318

Versioning context menu

Posted by & filed under TYPO3.

Versioning can be disabled from the context menu, by using the following UserTS: options.contextMenu.pageTree.disableItems = versioning More info: RFC: #3687: Disable “versioning” and “moreoptions”-menuitem via contextMenu.[key].disableItems in User TSconfig http://bugs.typo3.org/view.php?id=3687

Method for redirects

Posted by & filed under TYPO3.

A new API method was added to perform redirects: t3lib_div::redirect($url, t3lib_div::HTTP_STATUS_303); Status can be any of the following constants: t3lib_div::HTTP_STATUS_100 t3lib_div::HTTP_STATUS_101 t3lib_div::HTTP_STATUS_200 t3lib_div::HTTP_STATUS_201 t3lib_div::HTTP_STATUS_202 t3lib_div::HTTP_STATUS_203 t3lib_div::HTTP_STATUS_204 t3lib_div::HTTP_STATUS_205 t3lib_div::HTTP_STATUS_206 t3lib_div::HTTP_STATUS_300 t3lib_div::HTTP_STATUS_301 t3lib_div::HTTP_STATUS_302 t3lib_div::HTTP_STATUS_303 t3lib_div::HTTP_STATUS_304 t3lib_div::HTTP_STATUS_305 t3lib_div::HTTP_STATUS_307 t3lib_div::HTTP_STATUS_400 t3lib_div::HTTP_STATUS_401 t3lib_div::HTTP_STATUS_402 t3lib_div::HTTP_STATUS_403 t3lib_div::HTTP_STATUS_404 t3lib_div::HTTP_STATUS_405 t3lib_div::HTTP_STATUS_406 t3lib_div::HTTP_STATUS_407 t3lib_div::HTTP_STATUS_408 t3lib_div::HTTP_STATUS_409 t3lib_div::HTTP_STATUS_410 t3lib_div::HTTP_STATUS_411 t3lib_div::HTTP_STATUS_412 t3lib_div::HTTP_STATUS_413 t3lib_div::HTTP_STATUS_414 t3lib_div::HTTP_STATUS_415 t3lib_div::HTTP_STATUS_416 t3lib_div::HTTP_STATUS_417 t3lib_div::HTTP_STATUS_500 t3lib_div::HTTP_STATUS_501… Read more »