19 declare(strict_types=1);
37 $this->db = $DIC->database();
45 if (!isset(self::$instance)) {
48 return self::$instance;
56 $query =
'SELECT * FROM ecs_export ' .
57 'WHERE obj_id = ' . $this->db->quote($a_obj_id,
'integer');
58 $res = $this->db->query($query);
71 $econtent_ids = array();
72 $query =
"SELECT econtent_id,obj_id FROM ecs_export " .
73 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer');
75 $res = $this->db->query($query);
77 $econtent_ids[$row->econtent_id] = $row->obj_id;
87 $query =
"SELECT obj_id FROM ecs_export ";
88 $res = $this->db->query($query);
91 $obj_ids[] = (
int)$row->obj_id;
102 $query =
"SELECT e.obj_id FROM ecs_export e" .
103 " JOIN object_data o ON (e.obj_id = o.obj_id)" .
104 " WHERE o.type = " . $this->db->quote($a_type,
"text");
105 $res = $this->db->query($query);
107 $obj_ids[] = (
int)$row->obj_id;
117 $query =
'SELECT * FROM ecs_export ' .
118 'WHERE obj_id = ' . $this->db->quote($a_obj_id,
'integer');
119 $res = $this->db->query($query);
123 $sids[] = (
int) $row->server_id;
133 $query =
"SELECT obj_id FROM ecs_export " .
134 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer');
135 $res = $this->db->query($query);
138 $obj_ids[] = $row->obj_id;
148 $query =
'SELECT * FROM ecs_export ' .
149 'WHERE obj_id = ' . $this->db->quote($a_obj_id,
'integer') .
' ';
150 $res = $this->db->query($query);
153 $sids[] = (
int)$row->server_id;
166 if (!is_array($a_ids) || !count($a_ids)) {
169 $query =
"DELETE FROM ecs_export WHERE " . $this->db->in(
'econtent_id', $a_ids,
false,
'integer') .
' ' .
170 'AND server_id = ' . $this->db->quote($a_server_id,
'integer');
171 $this->db->manipulate($query);
180 $query =
'DELETE FROM ecs_export ' .
181 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer');
182 $this->db->manipulate($query);
188 public function _isRemote(
int $a_server_id,
int $a_econtent_id): bool
190 $query =
"SELECT obj_id FROM ecs_export " .
191 "WHERE econtent_id = " . $this->db->quote($a_econtent_id,
'integer') .
" " .
192 'AND server_id = ' . $this->db->quote($a_server_id,
'integer');
193 $res = $this->db->query($query);
_deleteEContentIds(int $a_server_id, array $a_ids)
Delete econtent ids for server.
_isRemote(int $a_server_id, int $a_econtent_id)
is remote object
static getInstance()
Get the singelton instance of this ilECSExportManager.
getExportedIds()
Get exported ids.
_getExportedIDsByServer(int $a_server_id)
get exported ids for server
getExportedIdsByType(string $a_type)
Get exported ids by type.
deleteByServer(int $a_server_id)
Delete by server id.
getExportServerIds(int $a_obj_id)
lookup server ids of exported materials
_isExported(int $a_obj_id)
Check if object is exported.
static ilECSExportManager $instance
lookupServerIds(int $a_obj_id)
Lookup server ids of exported objects.
Manage the ECS exported contents.
_getAllEContentIds(int $a_server_id)
get all exported econtent ids per server