47 $this->db = $DIC->database();
48 $this->export_id = $a_export_id;
49 if ($this->export_id) {
56 if (self::$instance) {
57 return self::$instance;
71 $ilDB = $DIC->database();
74 $query =
'SELECT MAX(export_id) exp FROM export_options ' .
75 'GROUP BY export_id ';
79 $exp_id = $row->exp + 1;
81 $query =
'INSERT INTO export_options (export_id,keyword,ref_id,obj_id,value) ' .
83 $ilDB->quote($exp_id,
'integer') .
', ' .
84 $ilDB->quote(self::KEY_INIT,
'integer') .
', ' .
85 $ilDB->quote(0,
'integer') .
', ' .
86 $ilDB->quote(0,
'integer') .
', ' .
87 $ilDB->quote(0,
'integer') .
' ' .
89 $ilDB->manipulate($query);
99 foreach ((array) $this->ref_options[self::KEY_ITEM_MODE] as
$ref_id => $mode) {
100 if ($mode == self::EXPORT_BUILD) {
114 foreach ((array) $this->ref_options[self::KEY_ITEM_MODE] as
$ref_id => $mode) {
115 if ($mode != self::EXPORT_OMIT) {
133 public function addOption(
int $a_keyword,
int $a_ref_id,
int $a_obj_id, $a_value): void
135 $query =
"SELECT MAX(pos) position FROM export_options";
136 $res = $this->db->query($query);
140 $pos = (
int) $row->position;
144 $query =
'INSERT INTO export_options (export_id,keyword,ref_id,obj_id,value,pos) ' .
153 $this->db->manipulate($query);
164 $items_selected =
false;
165 foreach ($child_nodes as $node) {
166 if ($node[
'type'] ===
'rolf') {
169 if ((
int) $node[
'ref_id'] === $parent_ref_id) {
172 (
int) $node[
'ref_id'],
173 (
int) $node[
'obj_id'],
182 (
int) $node[
'ref_id']
186 (
int) $node[
'ref_id'],
187 (
int) $node[
'obj_id'],
196 (
int) $node[
'ref_id'],
197 (
int) $node[
'obj_id'],
200 if ($mode != ilExportOptions::EXPORT_OMIT) {
201 $items_selected =
true;
204 return $items_selected;
213 return $this->options[$a_keyword] ??
null;
224 return $this->obj_options[$a_keyword][$a_obj_id] ??
null;
235 return $this->ref_options[$a_keyword][$a_ref_id] ??
null;
238 public function delete():
void 240 $query =
"DELETE FROM export_options " .
242 $this->db->manipulate($query);
247 $this->options = array();
248 $this->obj_options = array();
249 $this->ref_options = array();
251 $query =
"SELECT * FROM export_options " .
254 $res = $this->db->query($query);
257 $this->ref_options[(
int) $row->keyword][(
int) $row->ref_id] = $row->value;
260 $this->obj_options[(
int) $row->keyword][(
int) $row->obj_id] = $row->value;
262 if (!$row->ref_id and !$row->obj_id) {
263 $this->options[(
int) $row->keyword] = $row->value;
getOptionByRefId(int $a_ref_id, int $a_keyword)
Get option by.
static newInstance(int $a_export_id)
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
getSubitemsForExport()
Get all subitems with mode != self::EXPORT_OMIT.
addOption(int $a_keyword, int $a_ref_id, int $a_obj_id, $a_value)
allowExport(string $obj_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ilExportOptions $instance
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getSubitemsForCreation(int $a_source_id)
Get all subitems with mode ilExportOptions::EXPORT_BUILD
addOptions(int $parent_ref_id, ilObjectDefinition $object_definition, ilAccessHandler $il_access, array $child_nodes, array $cp_options)
__construct(int $a_export_id)
getOption(int $a_keyword)
static allocateExportId()
getOptionByObjId(int $a_obj_id, int $a_keyword)
Get option by.