3 declare(strict_types=1);
41 $db = $DIC->database();
43 $query =
'SELECT rbac_id FROM il_meta_rights ' .
44 'WHERE ' .
$db->
in(
'obj_type', $a_types,
false,
'text') .
' ' .
45 'AND ' .
$db->
in(
'description', $a_copyright,
false,
'text');
52 $obj_ids[] = (
int) $row->rbac_id;
58 public function setCosts(
string $a_costs): bool
63 $this->costs = $a_costs;
81 $this->caor = $a_caor;
96 $this->description = $a_description;
106 $this->description_language = $lng_obj;
111 return is_object($this->description_language) ? $this->description_language : null;
116 return is_object($this->description_language) ? $this->description_language->getLanguageCode() :
'';
122 $fields[
'meta_rights_id'] = array(
'integer', $next_id = $this->db->nextId(
'il_meta_rights'));
124 if ($this->db->insert(
'il_meta_rights', $fields)) {
133 return $this->
getMetaId() && $this->db->update(
136 array(
"meta_rights_id" => array(
'integer', $this->
getMetaId()))
140 public function delete():
bool 143 $query =
"DELETE FROM il_meta_rights " .
144 "WHERE meta_rights_id = " . $this->db->quote($this->
getMetaId(),
'integer');
159 'rbac_id' => array(
'integer', $this->
getRBACId()),
160 'obj_id' => array(
'integer', $this->
getObjId()),
161 'obj_type' => array(
'text', $this->
getObjType()),
162 'costs' => array(
'text', $this->
getCosts()),
172 $query =
"SELECT * FROM il_meta_rights " .
173 "WHERE meta_rights_id = " . $this->db->quote($this->
getMetaId(),
'integer');
178 $this->
setObjId((
int) $row->obj_id);
182 $this->
setCosts((
string) $row->costs);
193 'Cost' => $this->
getCosts() ?:
'No',
221 $ilDB = $DIC->database();
223 $query =
"SELECT description FROM il_meta_rights " .
224 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
225 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" ";
229 if (isset($row) && isset($row->description)) {
230 return $row->description;
236 public static function _getId(
int $a_rbac_id,
int $a_obj_id):
int 240 $ilDB = $DIC->database();
242 $query =
"SELECT meta_rights_id FROM il_meta_rights " .
243 "WHERE rbac_id = " .
$ilDB->quote($a_rbac_id,
'integer') .
" " .
244 "AND obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
248 return (
int) $row->meta_rights_id;
static getLogger(string $a_component_id)
Get component logger.
static _lookupCopyrightForExport(string $a_cp_string)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupDescription(int $a_rbac_id, int $a_obj_id)
static _getId(int $a_rbac_id, int $a_obj_id)
toXML(ilXmlWriter $writer)
xmlEndTag(string $tag)
Writes an endtag.
getDescriptionLanguageCode()
setDescriptionLanguage(ilMDLanguageItem $lng_obj)
parseDescriptionFromImport(string $a_description)
query(string $query)
Run a (read-only) Query on the database.
getCopyrightAndOtherRestrictions()
static lookupCopyrightFromImport(string $copyright_text)
in(string $field, array $values, bool $negate=false, string $type="")
ilMDLanguageItem $description_language
setCopyrightAndOtherRestrictions(string $a_caor)
setDescription(string $a_description)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
setCosts(string $a_costs)
static createIdentifier(int $a_entry_id)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setMetaId(int $a_meta_id, bool $a_read_data=true)
static lookupRightsByTypeAndCopyright(array $a_types, array $a_copyright)
setObjType(string $a_type)