diff options
Diffstat (limited to 'core/namespace/Page/Item.php')
-rw-r--r-- | core/namespace/Page/Item.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/core/namespace/Page/Item.php b/core/namespace/Page/Item.php deleted file mode 100644 index cbc99e6..0000000 --- a/core/namespace/Page/Item.php +++ /dev/null @@ -1,20 +0,0 @@ -<?php -namespace Page; - -class Item extends \Item { - const CONFIGURATION = 'PAGE'; - - #=============================================================================== - # Return unique page IDs for search results - #=============================================================================== - public static function getSearchResultIDs($search, \Database $Database): array { - $Statement = $Database->prepare(sprintf("SELECT id FROM %s WHERE - MATCH(name, body) AGAINST(? IN BOOLEAN MODE) LIMIT 20", Attribute::TABLE)); - - if($Statement->execute([$search])) { - return $Statement->fetchAll($Database::FETCH_COLUMN); - } - - return []; - } -} |