19 declare(strict_types=1);
41 $this->db = $DIC->database();
50 return self::$instance;
52 return self::$instance =
new ilSearchCommandQueue();
60 $query =
"SELECT obj_id, obj_type FROM search_command_queue " .
61 "WHERE obj_id = " . $this->db->quote($element->
getObjId(),
'integer') .
" " .
62 "AND obj_type = " . $this->db->quote($element->
getObjType(),
'text');
63 $res = $this->db->query($query);
64 if (
$res->numRows()) {
76 $query =
"INSERT INTO search_command_queue (obj_id,obj_type,sub_id,sub_type,command,last_update,finished) " .
78 $this->db->quote($element->
getObjId(),
'integer') .
", " .
79 $this->db->quote($element->
getObjType(),
'text') .
", " .
82 $this->db->quote($element->
getCommand(),
'text') .
", " .
83 $this->db->now() .
", " .
86 $res = $this->db->manipulate($query);
94 $query =
"UPDATE search_command_queue " .
95 "SET command = " . $this->db->quote($element->
getCommand(),
'text') .
", " .
96 "last_update = " . $this->db->now() .
", " .
97 "finished = " . $this->db->quote(0,
'integer') .
" " .
98 "WHERE obj_id = " . $this->db->quote($element->
getObjId(),
'integer') .
" " .
99 "AND obj_type = " . $this->db->quote($element->
getObjType(),
'text');
100 $res = $this->db->manipulate($query);
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
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
update(ilSearchCommandQueueElement $element)
Update existing entry.
__construct()
Constructor.