3 declare(strict_types=1);
42 $this->
ctrl = $DIC->ctrl();
43 $this->
lng = $DIC->language();
44 $this->
access = $DIC->access();
45 $this->tree = $DIC->repositoryTree();
46 $this->obj_definition = $DIC[
"objDefinition"];
47 $this->renderer = $DIC->ui()->renderer();
48 $this->factory = $DIC->ui()->factory();
51 $this->
setId(
'objownmgmt');
60 $this->
setRowTemplate(
"tpl.obj_ownership_row.html",
"Services/Object");
74 if (!is_null($data) &&
sizeof($data)) {
75 if (!$this->user_id) {
79 foreach ($data as
$id => $item) {
85 if (!$this->tree->isDeleted($ref_id)) {
87 $readable = $this->
access->checkAccessOfUser(
95 $readable = $is_admin;
104 "readable" => $readable
117 $icon = $this->factory->symbol()->icon()->standard($set[
"type"], $set[
"title"], Standard::MEDIUM);
118 $this->tpl->setVariable(
"ICON", $this->renderer->render(
$icon));
121 $this->tpl->setVariable(
"PATH", $set[
"path"]);
124 $this->tpl->setCurrentBlock(
"actions");
125 $this->tpl->setVariable(
"ACTIONS", $this->
buildActions($set[
"ref_id"], $set[
"type"]));
126 $this->tpl->parseCurrentBlock();
133 $agui->setId($this->
id .
"-" . $ref_id);
134 $agui->setListTitle($this->
lng->txt(
"actions"));
136 $this->
ctrl->setParameter($this->parent_obj,
"ownid", $ref_id);
139 $this->
lng->txt(
"show"),
148 $this->
lng->txt(
"move"),
150 $this->
ctrl->getLinkTarget($this->parent_obj,
"move")
154 $this->
lng->txt(
"change_owner"),
156 $this->
ctrl->getLinkTarget($this->parent_obj,
"changeOwner")
159 if (!in_array($type, array(
"crsr",
"catr",
"grpr")) && $this->obj_definition->allowExport($type)) {
161 $this->
lng->txt(
"export"),
163 $this->
ctrl->getLinkTarget($this->parent_obj,
"export")
168 $this->
lng->txt(
"delete"),
170 $this->
ctrl->getLinkTarget($this->parent_obj,
"delete")
173 $this->
ctrl->setParameter($this->parent_obj,
"ownid",
"");
175 return $agui->getHTML();
182 $path_full = $this->tree->getPathFull($ref_id);
183 foreach ($path_full as
$data) {
184 if (++$counter < (count($path_full) - 2)) {
187 if ($ref_id != $data[
'ref_id']) {
188 $path .=
" » " . $data[
'title'];
197 if (!method_exists($this->parent_obj,
'isReadOnly')) {
200 return $this->parent_obj->isReadOnly();
setFormAction(string $a_form_action, bool $a_multipart=false)
ILIAS UI Factory $factory
static _getAllReferences(int $id)
get all reference ids for object ID
setDisableFilterHiding(bool $a_val=true)
Table for object role permissions.
__construct(?object $parent_obj, string $parent_cmd, int $user_id, array $data=null)
parses the objects.xml it handles the xml-description of all ilias objects
ilObjectDefinition $obj_definition
const ALLOWED_TAGS_IN_TITLE_AND_DESCRIPTION
buildActions(int $ref_id, string $type)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
__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)
ILIAS UI Renderer $renderer