WIP Suche implementiert, sowie Sortieren der Ergebnisse #19

Merged
niklas.ortmann merged 54 commits from ImplementedSearch into dev 2026-06-03 16:07:42 +02:00
2 changed files with 1 additions and 5 deletions
Showing only changes of commit 24dc432f01 - Show all commits
-4
View File
@@ -6,10 +6,6 @@ if (!isset($abs_path)) {
}
require_once $abs_path . "/php/controller/index-controller.php";
if (isset($_GET["pfad"]) && $_GET["pfad"] === "search-results") {
require_once $abs_path . "/php/controller/search-results-controller.php";
}
?>
<!--
+1 -1
View File
@@ -67,7 +67,7 @@ interface ArticleManagerDAO
*
* @param $keyword Wort, nach dem gesucht wird als string
*/
public function search(string $keyword): array;
//public function search(string $keyword): array;
}