Implementierung
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
require_once "DatabaseCommentManager.php";
|
||||
|
||||
/**
|
||||
* Zentrale Zugriffsschicht für Kommentare.
|
||||
*
|
||||
* Die Anwendung arbeitet ausschließlich
|
||||
* mit dem CommentManager und kennt die
|
||||
* konkrete Speicherimplementierung nicht.
|
||||
*
|
||||
* @author Caroline Schulte
|
||||
*/
|
||||
class CommentManager
|
||||
{
|
||||
/**
|
||||
* Gibt die aktive Kommentarverwaltung zurück.
|
||||
*
|
||||
* @return CommentManagerDAO
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
return DatabaseCommentManager::getInstance();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user