3 declare(strict_types=1);
47 $this->db = $DIC->database();
56 return self::$instance;
58 return self::$instance =
new ilSearchCommandQueue();
66 $query =
"SELECT obj_id, obj_type FROM search_command_queue " .
67 "WHERE obj_id = " . $this->db->quote($element->
getObjId(),
'integer') .
" " .
68 "AND obj_type = " . $this->db->quote($element->
getObjType(),
'text');
70 if (
$res->numRows()) {
82 $query =
"INSERT INTO search_command_queue (obj_id,obj_type,sub_id,sub_type,command,last_update,finished) " .
84 $this->db->quote($element->
getObjId(),
'integer') .
", " .
85 $this->db->quote($element->
getObjType(),
'text') .
", " .
88 $this->db->quote($element->
getCommand(),
'text') .
", " .
89 $this->db->now() .
", " .
100 $query =
"UPDATE search_command_queue " .
101 "SET command = " . $this->db->quote($element->
getCommand(),
'text') .
", " .
102 "last_update = " . $this->db->now() .
", " .
103 "finished = " . $this->db->quote(0,
'integer') .
" " .
104 "WHERE obj_id = " . $this->db->quote($element->
getObjId(),
'integer') .
" " .
105 "AND obj_type = " . $this->db->quote($element->
getObjType(),
'text');
Represents an entry for the search command queue.
store(ilSearchCommandQueueElement $element)
update / save new entry
insert(ilSearchCommandQueueElement $element)
Insert new entry.
static factory()
get singleton instance
update(ilSearchCommandQueueElement $element)
Update existing entry.
__construct()
Constructor.