3 declare(strict_types=1);
44 $this->copyright_id = $a_parent_obj->
getEntryId();
45 $this->
setId(
"mdcopusage" . $this->copyright_id);
49 $this->ui_factory = $DIC->ui()->factory();
50 $this->ui_renderer = $DIC->ui()->renderer();
51 $this->db = $DIC->database();
52 $this->
lng = $DIC->language();
53 $this->
lng->loadLanguageModule(
'meta');
56 public function init(): void
59 $this->
setTitle($md_entry->getTitle());
63 $this->
addColumn($this->
lng->txt(
'meta_copyright_sub_items'),
'sub_items');
64 $this->
addColumn($this->
lng->txt(
'owner'),
'owner_name');
66 $this->
setRowTemplate(
"tpl.show_copyright_usages_row.html",
"Services/MetaData");
68 $this->getParentObject(),
88 $this->
lng->txt(
"object") .
" " . $this->
lng->txt(
"title")
93 $this->objects = array();
95 $this->objects[$item] = $this->
lng->txt(
"obj_" . $item);
98 $item->setOptions(array(
"" =>
"-") + $this->objects);
99 $this->filter[
"object"] = $item->getValue();
104 if ($a_field ===
'sub_items') {
116 if ($this->
filter[
"title"]) {
117 $filter[
"title"] = $this->
filter[
"title"];
120 if ($this->
filter[
'object']) {
121 $filter[
'object'] = $this->
filter[
'object'];
126 protected function fillRow(array $a_set): void
128 $icon = $this->ui_factory->symbol()->icon()->standard(
130 $this->
lng->txt($a_set[
'type']),
133 $this->tpl->setVariable(
'OBJ_TYPE_ICON', $this->ui_renderer->render(
$icon));
134 $this->tpl->setVariable(
'TITLE', $a_set[
'title']);
135 $this->tpl->setVariable(
"DESCRIPTION", $a_set[
'desc']);
136 if ($a_set[
'references']) {
138 $path->enableHideLeaf(
false);
139 $path->enableDisplayCut(
true);
140 $path->enableTextOnly(
false);
142 foreach ($a_set[
'references'] as $reference) {
143 $this->tpl->setCurrentBlock(
"references");
145 $this->tpl->parseCurrentBlock();
149 $this->tpl->setVariable(
'SUB_ITEMS', $a_set[
'sub_items']);
152 if ($a_set[
'owner_link']) {
153 $this->tpl->setCurrentBlock(
"link_owner");
154 $this->tpl->setVariable(
"OWNER_LINK", $a_set[
'owner_link']);
155 $this->tpl->setVariable(
'OWNER', $a_set[
'owner_name']);
156 $this->tpl->parseCurrentBlock();
158 $this->tpl->setCurrentBlock(
"owner");
159 $this->tpl->setVariable(
'OWNER', $a_set[
'owner_name']);
160 $this->tpl->parseCurrentBlock();
174 foreach ($db_data as $item) {
175 $obj_id = $item[
'obj_id'];
177 ($filters[
'title'] ??
false) &&
183 ($filters[
'object'] ??
false) &&
208 $query =
"SELECT DISTINCT obj_type FROM il_meta_rights " .
209 "WHERE description = " . $this->db->quote(
210 'il_copyright_entry__' .
IL_INST_ID .
'__' . $this->copyright_id,
213 " AND rbac_id = obj_id";
214 $result = $this->db->query(
$query);
216 while ($row = $this->db->fetchAssoc($result)) {
217 $data[] = $row[
'obj_type'];
227 $query =
"SELECT rbac_id, obj_id, obj_type FROM il_meta_rights " .
228 "WHERE description = " . $this->db->quote(
229 'il_copyright_entry__' .
IL_INST_ID .
'__' . $this->copyright_id,
232 ' AND rbac_id != ' . $this->db->quote(0,
'integer') .
235 $result = $this->db->query(
$query);
237 while ($row = $this->db->fetchAssoc($result)) {
239 "obj_id" => (
int) $row[
'rbac_id'],
240 "obj_type" => (
string) $row[
'obj_type']
248 $query =
"SELECT count(rbac_id) total FROM il_meta_rights " .
250 " AND rbac_id != obj_id";
252 $result = $this->db->query(
$query);
254 return (
int) $row->total;
Creates a path for a start and endnode.
An entity that renders components to a string output.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
setFormAction(string $a_form_action, bool $a_multipart=false)
collectData(array $filters)
static _getAllReferences(int $id)
get all reference ids for object ID
numericOrdering(string $a_field)
setDisableFilterHiding(bool $a_val=true)
static _lookupOwner(int $obj_id)
Lookup owner user ID for object ID.
static getProfileLink(int $a_usr_id)
Get link to personal profile Return empty string in case of not public profile.
getCountSubItemsFromDB(int $a_rbac_id)
addFilterItemByMetaType(string $id, int $type=self::FILTER_TEXT, bool $a_optional=false, string $caption="")
Add filter by standard type.
static _lookupTitle(int $obj_id)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(ilMDCopyrightUsageGUI $a_parent_obj, string $a_parent_cmd='')
static _lookupDescription(int $obj_id)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
static _lookupType(int $id, bool $reference=false)