Bug #24491 ยป 0016936.patch
typo3/sysext/install/updates/class.tx_coreupdates_migrateworkspaces.php (working copy) | ||
---|---|---|
* @version $Id$
|
||
*/
|
||
class tx_coreupdates_migrateworkspaces extends tx_coreupdates_installsysexts {
|
||
protected $title = 'Versioning and Workspaces: Migrate "draft" workspace';
|
||
protected $title = 'Versioning and Workspaces';
|
||
public $sqlQueries;
|
||
... | ... | |
*/
|
||
public function checkForUpdate(&$description) {
|
||
$result = FALSE;
|
||
$description = 'Migrates the old hardcoded draft workspace to be a real workspace element,
|
||
updates workspace owner fields to support either users or groups and
|
||
migrates the old-style workspaces with fixed workflow to a custom-stage workflow';
|
||
$description = 'Migrates the old hardcoded draft workspace to be a real workspace record,
|
||
updates workspace owner fields to support either users or groups and
|
||
migrates the old-style workspaces with fixed workflow to a custom-stage workflow. If required
|
||
the extbase, fluid, version and workspaces extensions are installed.';
|
||
// TYPO3 version 4.5 and above
|
||
if ($this->versionNumber >= 4005000) {
|