Bugs und Probleme
1. Bug: In der Backend Administration ist das Sortieren nach Autor nicht möglich.
2. Fehlende Funktion - Nach der Erstellung eines neuen Blog-Kommentars sendete der Blog dem Blog-Admin keine Benachrichtigung. Die E-Mail-Funktion haben wir erst direckt im Controller:
typo3conf/ext/blog/Classes/Controller/CommentController.php Linien 140 - 169
hart kodiert:
        // E-Mail for Blog-Admin
        // Create the message
        $mail = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Mail\\MailMessage');
        // Prepare and send the message
        $mail
        // Give the message a subject
        ->setSubject('New Blog Comment Was Created')
        // Set the From address with an associative array
        ->setFrom(array('no-reply@website4all.de' => 'Typo3 Blog'))
        // Set the To addresses with an associative array
        ->setTo(array('info@website4all.de', 'alexander@sinkov.de' => 'Blog Admin'))
        // Give it a body
        ->setBody('Hallo, ein neuer Blog-Kommentar wurde erstellt.')
        // And optionally an alternative body
        // ->addPart('<q>Here is the message itself</q>', 'text/html')
        // Optionally add any attachments
        // ->attach(Swift_Attachment::fromPath('my-document.pdf'))
        // And finally do send it
        ->send();
Hier müssen Sie Ihre E-Mail-Adresse eintragen und die Benachrichtigungen über die Erstellung eines neuen Kommentras werden an Ihre E-Mail-Adresse gesendet.
3. Die Fehler-Meldungen des Kommetar-Formulars sind zur Zeit hardkodiert und nur in Englisch.