Mods: Summary: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Tm (Diskussion | Beiträge) Die Seite wurde neu angelegt: „Summary of Modifications of Vanilla CodeIgniter: {| class="wikitable" |- ! File !! Modification |- | application/config/config.php || <source>$config['index_p…“ |
Tm (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| (Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
Summary of Modifications of Vanilla CodeIgniter: | Summary of Modifications of Plain Vanilla CodeIgniter: | ||
{| class="wikitable" | {| class="wikitable" | ||
| Zeile 5: | Zeile 5: | ||
! File !! Modification | ! File !! Modification | ||
|- | |- | ||
| application/config/config.php || < | | application/config/config.php || <syntaxhighlight lang="php">$config['index_page'] = '';</syntaxhighlight > | ||
|- | |||
| application/config/autoload.php || <syntaxhighlight lang="php"> | |||
$autoload['packages'] = array('codecoupler'); | |||
$autoload['libraries'] = array('master'); | |||
</syntaxhighlight > | |||
|} | |} | ||
Aktuelle Version vom 8. Mai 2017, 21:44 Uhr
Summary of Modifications of Plain Vanilla CodeIgniter:
| File | Modification |
|---|---|
| application/config/config.php | $config['index_page'] = '';
|
| application/config/autoload.php | $autoload['packages'] = array('codecoupler');
$autoload['libraries'] = array('master');
|