19 declare(strict_types=1);
29 public static function hasAssignments(
int $a_server_id,
int $a_mid,
int $a_tree_id):
bool 38 $query =
'SELECT ref_id FROM ecs_node_mapping_a ' .
39 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
40 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
41 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
44 return $res->rowCount() > 0;
52 public static function lookupSettings(
int $a_server_id,
int $a_mid,
int $a_tree_id,
int $a_node_id)
58 $query =
'SELECT title_update, position_update, tree_update FROM ecs_node_mapping_a ' .
59 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
60 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
61 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
62 'AND cs_id = ' .
$ilDB->quote($a_node_id,
'integer');
65 if (!
$res->numRows()) {
71 $settings[
'title_update'] = $row->title_update;
72 $settings[
'position_update'] = $row->position_update;
73 $settings[
'tree_update'] = $row->tree_update;
87 $query =
'SELECT cs_id FROM ecs_node_mapping_a ' .
88 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
89 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
90 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
94 $assignments = array();
96 $assignments[] = $row->cs_id;
108 $ilDB = $DIC[
'ilDB'];
110 $query =
'SELECT cs_id FROM ecs_node_mapping_a ' .
111 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
112 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
113 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
114 'AND ref_id = ' .
$ilDB->quote($a_ref_id,
'integer') .
' ';
117 $assignments = array();
119 $assignments[] = $row->cs_id;
132 $ilDB = $DIC[
'ilDB'];
134 $query =
'SELECT depth FROM ecs_node_mapping_a ' .
135 'JOIN ecs_cms_tree ON (tree = cs_root AND child = cs_id) ' .
136 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
137 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
138 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ';
141 return $row->depth === 1;
153 $ilDB = $DIC[
'ilDB'];
155 $query =
'SELECT title_update FROM ecs_node_mapping_a ' .
156 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
157 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
158 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
159 'AND cs_id = ' .
$ilDB->quote(0,
'integer') .
' ';
162 return (
bool) $row->title_update;
174 $ilDB = $DIC[
'ilDB'];
176 $query =
'SELECT cs_id FROM ecs_node_mapping_a ' .
177 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
178 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
179 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
180 'AND ref_id = ' .
$ilDB->quote($a_ref_id,
'integer') .
' ';
185 $cs_ids[] = $row->cs_id;
197 $ilDB = $DIC[
'ilDB'];
199 $query =
'DELETE FROM ecs_node_mapping_a ' .
200 'WHERE server_id = ' .
$ilDB->quote($a_server_id) .
' ' .
201 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
202 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
203 'AND ' .
$ilDB->in(
'cs_id', $cs_ids,
false,
'integer');
204 $ilDB->manipulate($query);
211 public static function deleteMappings(
int $a_server_id,
int $a_mid,
int $a_tree_id): bool
215 $ilDB = $DIC[
'ilDB'];
217 $query =
'DELETE FROM ecs_node_mapping_a ' .
218 'WHERE server_id = ' .
$ilDB->quote($a_server_id) .
' ' .
219 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
220 'AND cs_root = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ';
221 $ilDB->manipulate($query);
231 foreach (self::lookupAssignmentsByRefId($a_server_id, $a_mid, $a_tree_id, $a_ref_id) as $assignment) {
239 $toDelete[] = $assignment;
246 self::deleteMappingsByCsId($a_server_id, $a_mid, $a_tree_id, $toDelete);
const MAPPING_PENDING_DISCONNECTABLE
static lookupAssignmentIds(int $a_server_id, int $a_mid, int $a_tree_id)
Lookup assignments.
static deleteMappingsByCsId(int $a_server_id, int $a_mid, int $a_tree_id, array $cs_ids)
Delete mappings.
static lookupSettings(int $a_server_id, int $a_mid, int $a_tree_id, int $a_node_id)
Lookup Settings.
static isWholeTreeMapped(int $a_server_id, int $a_mid, int $a_tree_id)
Check if whole tree is mapped.
static deleteMappings(int $a_server_id, int $a_mid, int $a_tree_id)
Delete mappings.
static lookupDefaultTitleUpdate($a_server_id, $a_mid, $a_tree_id)
Lookup default title update setting.
static lookupAssignmentsByRefId(int $a_server_id, int $a_mid, int $a_tree_id, int $a_ref_id)
Lookup assignments.
static deleteDisconnectableMappings(int $a_server_id, int $a_mid, int $a_tree_id, int $a_ref_id)
delete disconnectable mappings
static lookupStatusByCmsId(int $a_server_id, int $a_mid, int $a_tree_id, string $cms_id)
Lookup status.
static lookupMappedItemsForRefId(int $a_server_id, int $a_mid, int $a_tree_id, int $a_ref_id)
Get cs ids for ref_id.
const MAPPING_PENDING_NOT_DISCONNECTABLE