search_wipe
modules/search/search.module, строка 264
- Версии
- 5 – 6
search_wipe($sid = NULL, $type = NULL, $reindex = FALSE)
Wipes a part of or the entire search index.
Параметры
$sid
(optional) The SID of the item to wipe. If specified, $type
must be passed
too.
$type
(optional) The type of item to wipe.
Код
<?php
function search_wipe($sid = NULL, $type = NULL, $reindex = FALSE) {
if ($type == NULL && $sid == NULL) {
module_invoke_all('search', 'reset');
}
else {
db_query("DELETE FROM {search_dataset} WHERE sid = %d AND type = '%s'", $sid, $type);
db_query("DELETE FROM {search_index} WHERE fromsid = %d AND fromtype = '%s'", $sid, $type);
// When re-indexing, keep link references
db_query("DELETE FROM {search_index} WHERE sid = %d AND type = '%s'". ($reindex ? " AND fromsid = 0" : ''), $sid, $type);
}
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии