19 declare(strict_types=1);
27 public const ID =
'adv_md_records_tbl';
36 $a_in_object_type_context =
"" 38 $this->permissions = $a_permissions;
39 $this->in_object_type_context = $a_in_object_type_context;
41 $this->
setId(self::ID);
44 $this->
addColumn($this->
lng->txt(
'md_adv_col_presentation_ordering'),
'position');
46 $this->
addColumn($this->
lng->txt(
'md_fields'),
'fields');
47 $this->
addColumn($this->
lng->txt(
'md_adv_scope'),
'first_scope');
48 $this->
addColumn($this->
lng->txt(
'md_obj_types'),
'obj_types');
49 $this->
addColumn($this->
lng->txt(
'md_adv_active'),
'active');
54 $this->
setRowTemplate(
"tpl.show_records_row.html",
"Services/AdvancedMetaData");
62 if ($a_field ==
'position') {
65 return parent::numericOrdering($a_field);
68 protected function fillRow(array $a_set): void
73 if ($this->in_object_type_context ===
"") {
76 0 => $this->
lng->txt(
"meta_obj_type_inactive"),
77 1 => $this->
lng->txt(
"meta_obj_type_mandatory"),
78 2 => $this->
lng->txt(
"meta_obj_type_optional")
83 0 => $this->
lng->txt(
"meta_obj_type_inactive"),
84 1 => $this->
lng->txt(
"meta_obj_type_active")
98 if ($obj_type[
"obj_type"] ==
"prtf" && $obj_type[
"sub_type"] ==
"pfpg") {
102 if ($obj_type[
"obj_type"] ==
"tals" && $obj_type[
"sub_type"] ==
"etal") {
106 foreach ($a_set[
'obj_types'] as $t) {
107 if ($obj_type[
"obj_type"] == $t[
"obj_type"] &&
108 $obj_type[
"sub_type"] == $t[
"sub_type"]) {
109 $value = $t[
"optional"]
113 if (!$a_set[
"local"] && $a_set[
"readonly"]) {
121 $value = (isset($a_set[
"local_selected"][$obj_type[
"obj_type"]]) &&
122 in_array($obj_type[
"sub_type"], $a_set[
"local_selected"][$obj_type[
"obj_type"]]))
132 if ($this->in_object_type_context !==
"" && $this->in_object_type_context !== $obj_type[
"obj_type"]) {
136 if (!$do_select && !$value) {
141 $this->tpl->setCurrentBlock(
'ass_obj_types');
142 $this->tpl->setVariable(
'VAL_OBJ_TYPE', $obj_type[
"text"]);
144 $type_options = $options;
145 switch ($obj_type[
"obj_type"]) {
148 unset($type_options[1]);
152 unset($type_options[2]);
157 "obj_types[" . $a_set[
'id'] .
"][" . $obj_type[
"obj_type"] .
":" . $obj_type[
"sub_type"] .
"]",
163 array(
"style" =>
"min-width:125px"),
164 $disabled || $do_disable
166 $this->tpl->setVariable(
'VAL_OBJ_TYPE_CLASS', $hidden ?
'hidden' :
'std');
167 $this->tpl->setVariable(
'VAL_OBJ_TYPE_STATUS', $select);
168 $this->tpl->parseCurrentBlock();
171 $this->tpl->setCurrentBlock(
'ass_obj_only');
172 $this->tpl->setVariable(
'VAL_OBJ_TYPE', $obj_type[
"text"]);
173 $this->tpl->parseCurrentBlock();
178 if (!$a_set[
'local'] && count($record->getScopeRefIds())) {
179 $this->tpl->setCurrentBlock(
'scope_txt');
180 $this->tpl->setVariable(
'LOCAL_OR_GLOBAL', $this->
lng->txt(
'md_adv_scope_list_header'));
181 $this->tpl->parseCurrentBlock();
183 foreach ($record->getScopeRefIds() as
$ref_id) {
184 $this->tpl->setCurrentBlock(
'scope_entry');
187 $this->tpl->parseCurrentBlock();
190 $this->tpl->setCurrentBlock(
'scope_txt');
191 $this->tpl->setVariable(
193 $a_set[
'local'] ? $this->
lng->txt(
'meta_local') : $this->
lng->txt(
'meta_global')
195 $this->tpl->parseCurrentBlock();
198 if (!$a_set[
"readonly"] || $a_set[
"local"]) {
199 $this->tpl->setCurrentBlock(
'check_bl');
200 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
201 $this->tpl->parseCurrentBlock();
204 $this->tpl->setVariable(
'R_ID', $a_set[
'id']);
205 $this->tpl->setVariable(
'VAL_POS', $a_set[
'position']);
206 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
207 if (strlen($a_set[
'description'])) {
208 $this->tpl->setVariable(
'VAL_DESCRIPTION', $a_set[
'description']);
212 $this->tpl->setVariable(
'TXT_FIELDS', $this->
lng->txt(
'md_adv_no_fields'));
214 foreach ($defs as $definition_obj) {
215 $this->tpl->setCurrentBlock(
'field_entry');
216 $this->tpl->setVariable(
'FIELD_NAME', $definition_obj->getTitle() .
217 ": " . $this->
lng->txt($definition_obj->getTypeTitle()));
218 $this->tpl->parseCurrentBlock();
221 $this->tpl->setVariable(
'ACTIVE_CHECKED', $a_set[
'active'] ?
' checked="checked" ' :
'');
222 $this->tpl->setVariable(
'ACTIVE_ID', $a_set[
'id']);
224 if (($a_set[
"readonly"]) ||
226 $this->tpl->setVariable(
'ACTIVE_DISABLED',
'disabled="disabled"');
229 if (!$a_set[
"readonly"]) {
230 $this->
ctrl->setParameter($this->parent_obj,
'record_id', $a_set[
'id']);
233 $this->tpl->setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTarget($this->parent_obj,
'editRecord'));
234 $this->tpl->setVariable(
'TXT_EDIT_RECORD', $this->
lng->txt(
'edit'));
237 $this->tpl->setVariable(
239 $this->
ctrl->getLinkTarget($this->parent_obj,
'editFields')
241 $this->tpl->setVariable(
'TXT_EDIT_FIELDS', $this->
lng->txt(
'md_adv_field_table'));
const ACTION_RECORD_EDIT_PROPERTY
setFormAction(string $a_form_action, bool $a_multipart=false)
static _getAssignableObjectTypes(bool $a_include_text=false)
Get assignable object type public.
__construct( $a_parent_obj, $a_parent_cmd, ilAdvancedMDPermissionHelper $a_permissions, $a_in_object_type_context="")
static getInstancesByRecordId( $a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
static _lookupObjId(int $ref_id)
static _getInstanceByRecordId(int $a_record_id)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
Advanced metadata permission helper.
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
const SUBACTION_RECORD_OBJECT_TYPES
const ACTION_RECORD_TOGGLE_ACTIVATION
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="")
const ACTION_RECORD_EDIT_FIELDS
ilAdvancedMDPermissionHelper $permissions
__construct(Container $dic, ilPlugin $plugin)
string $in_object_type_context
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)
numericOrdering(string $a_field)