Bug #20940 ยป 11804.diff
typo3/sysext/install/updates/class.tx_coreupdates_installsysexts.php (working copy) | ||
---|---|---|
*/
|
||
class tx_coreupdates_installsysexts {
|
||
public $versionNumber; // version number coming from t3lib_div::int_from_ver()
|
||
protected $newSystemExtensions = array('about', 'cshmanual', 'feedit', 'simulatestatic');
|
||
protected $newSystemExtensions = array('about', 'cshmanual', 'feedit', 'opendocs', 'simulatestatic');
|
||
/**
|
||
* parent object
|
||
... | ... | |
$description = 'Install the following system extensions as their functionality is moved out of the TYPO3 base installation and now optional:<br />
|
||
<strong>Help>About [about]</strong><br />Shows info about TYPO3 and installed extensions.<br />
|
||
<strong>Help>TYPO3 Manual [cshmanual]</strong><br />Shows TYPO3 inline user manual.<br />
|
||
<strong>Frontend Editing [feedit]</strong><br />This module enables FE-editing, configuration is done by Typoscript<br />
|
||
<strong>Simulate Static URLs [simulatestatic]</strong><br />If you do not want to use RealURL or CoolURI but still want the Speaking URL feature. If you used "config.simulateStaticDocuments = 1" in this installation before, you should install this system extension. Be sure to read the manual of "simulatestatic".</label>';
|
||
<strong>Frontend Editing [feedit]</strong><br />This module enables FE-editing, configuration is done by Typoscript.<br />
|
||
<strong>User>Open Documents [opendocs]</strong><br />Handles the list of opened documents in TYPO3 backend.<br />
|
||
<strong>Simulate Static URLs [simulatestatic]</strong><br />If you do not want to use RealURL or CoolURI but still want the Speaking URL feature. If you used "config.simulateStaticDocuments = 1" in this installation before, you should install this system extension. Be sure to read the manual of "simulatestatic".';
|
||
foreach($this->newSystemExtensions as $ext) {
|
||
if (!t3lib_extMgm::isLoaded($ext)) {
|
||
... | ... | |
<input type="checkbox" id="about" name="' . $inputPrefix . '[sysext][about]" value="1" checked="checked" /><label for="about">Help>About [about]</label><br />
|
||
<input type="checkbox" id="cshmanual" name="' . $inputPrefix . '[sysext][cshmanual]" value="1" checked="checked" /><label for="cshmanual">Help>TYPO3 Manual [cshmanual]</label><br />
|
||
<input type="checkbox" id="feedit" name="' . $inputPrefix . '[sysext][feedit]" value="1" checked="checked" /><label for="feedit">Frontend Editing [feedit]</label><br />
|
||
<input type="checkbox" id="opendocs" name="' . $inputPrefix . '[sysext][opendocs]" value="1" checked="checked" /><label for="opendocs">User>Open Documents [opendocs]</label><br />
|
||
<input type="checkbox" id="simulatestatic" name="' . $inputPrefix . '[sysext][simulatestatic]" value="1" checked="checked" /><label for="simulatestatic">Simulate Static URLs [simulatestatic]</label><br />';
|
||
return $content;
|