19 declare(strict_types=1);
32 $this->db = $DIC->database();
40 $query =
'SELECT sid,mid,export_types FROM ecs_part_settings ep ' .
41 'JOIN ecs_server es ON ep.sid = es.server_id ' .
42 'WHERE export = ' . $this->db->quote(1,
'integer') .
' ' .
43 'AND active = ' . $this->db->quote(1,
'integer') .
' ' .
44 'ORDER BY cname,es.title';
46 $res = $this->db->query($query);
50 if (in_array($a_type, (array) unserialize($row->export_types, [
'allowed_classes' =>
true]),
true)) {
51 $mids[$counter][
'sid'] = (
int)$row->sid;
52 $mids[$counter][
'mid'] = (
int)$row->mid;
64 $query =
'SELECT DISTINCT(sid) FROM ecs_part_settings ep ' .
65 'JOIN ecs_server es ON ep.sid = es.server_id ' .
66 'WHERE export = ' . $this->db->quote(1,
'integer') .
' ' .
67 'AND active = ' . $this->db->quote(1,
'integer') .
' ';
68 $res = $this->db->query($query);
71 $sids[] = (
int) $row->sid;
getExportableParticipants($a_type)
Get participants which are enabled and export is allowed.
getServersContaingExports()
Get server ids which allow an export.