Project

General

Profile

Bug #21137 » 12055.diff

Administrator Admin, 2009-09-24 23:05

View differences:

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', 'opendocs', 'simulatestatic');
protected $newSystemExtensions = array('about', 'cshmanual', 'feedit', 'opendocs', 'simulatestatic', 'recycler', 't3editor', 'reports', 'scheduler', 'rsaauth');
/**
* parent object
......
<strong>Help&gt;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>User&gt;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".';
<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".<br />
<strong>Recycler [recycler]</strong><br />The recycler offers the possibilities of cleaning up the garbage collection or to restore data again. Based on an ExtJS interface its possible to get a quick overview of the accordant records, filter the resultset and execute the required actions.<br />
<strong>Editor with syntax highlighting [t3editor]</strong><br />JavaScript-driven editor with syntax highlighting and codecompletion for TS.<br />
<strong>System Reports [reports]</strong><br />The system reports module groups several system reports.<br />
<strong>Scheduler [scheduler]</strong><br />The TYPO3 Scheduler let\'s you register tasks to happen at a specific time.<br />
<strong>RSA authentication for TYPO3 [rsaauth]</strong><br />Contains a service to authenticate TYPO3 BE and FE users using private/public key encryption of passwords.<br />';
foreach($this->newSystemExtensions as $ext) {
if (!t3lib_extMgm::isLoaded($ext)) {
......
<input type="checkbox" id="cshmanual" name="' . $inputPrefix . '[sysext][cshmanual]" value="1" checked="checked" /><label for="cshmanual">Help&gt;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&gt;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 />';
<input type="checkbox" id="simulatestatic" name="' . $inputPrefix . '[sysext][simulatestatic]" value="1" checked="checked" /><label for="simulatestatic">Simulate Static URLs [simulatestatic]</label><br />
<input type="checkbox" id="recycler" name="' . $inputPrefix . '[sysext][recycler]" value="1" checked="checked" /><label for="recycler">Recycler [recycler]</label><br />
<input type="checkbox" id="t3editor" name="' . $inputPrefix . '[sysext][t3editor]" value="1" checked="checked" /><label for="t3editor">Editor with syntax highlighting [t3editor]</label><br />
<input type="checkbox" id="reports" name="' . $inputPrefix . '[sysext][reports]" value="1" checked="checked" /><label for="reports">System Reports [reports]</label><br />
<input type="checkbox" id="scheduler" name="' . $inputPrefix . '[sysext][scheduler]" value="1" checked="checked" /><label for="scheduler">Scheduler [scheduler]</label><br />
<input type="checkbox" id="rsaauth" name="' . $inputPrefix . '[sysext][rsaauth]" value="1" checked="checked" /><label for="scheduler">RSA authentication for TYPO3 [rsaauth]</label><br />';
return $content;
}
(1-1/2)