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 »

File operations for BE groups

Posted by & filed under TYPO3.

Basic file operation permissions no longer need to be set for individual users, but can be set for a backend group, and will apply to all users in a group. More info: RFC #5203: Feature: Implement fileoperation permission configuration from be_groups http://bugs.typo3.org/view.php?id=5203

saveDocNew for all tables

Posted by & filed under TYPO3.

The Save & New button allows you to save a record, and be redirected to a form for creating a new one. This saves two clicks for anyone wanting to create two records, one after another. In the past the button was available, but had to be turned on for each specific table. The new… Read more »

excludeFromUpdates

Posted by & filed under TYPO3.

A new state available in ext_emconf.php of extensions allows administrators and developers to set extensions to be protected against updates. When an extension is updated, but local version contains changes made by administrators that they don’t want to be overwritten, the system wide update will protect the extension set as excluded from updates. To make… Read more »