Kategorien nicht statisch sondern dynamisch

This commit is contained in:
2026-06-03 19:29:29 +02:00
parent 9c3ebc9877
commit e772a8b57f
6 changed files with 138 additions and 52 deletions
+7
View File
@@ -85,6 +85,13 @@ interface ArticleManagerDAO
*/
public function search(string $keyword): array;
/**
* Gibt alle Beiträge einer gegebenen Kategorie aus.
* @param $category
* @return mixed
*/
public function getArticlesByCategory($category);
}
?>