blob: cbc99e6f6c2e165d55137669267fe585e54b1480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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 [];
}
}
|