9 use \ILIAS\Modules\OrgUnit\ARHelper\DIC;
37 $this->parent_obj = $a_parent_obj;
39 $this->
setId(self::TBL_ID);
45 $this->parent_obj = $a_parent_obj;
46 $this->
setRowTemplate(
'tpl.bibl_administration_fields_list_row.html',
'Modules/Bibliographic');
59 if ($this->parent_obj->checkPermissionBoolAndReturn(
'write')) {
69 $this->
addColumn($this->lng()->txt(
'order'));
70 $this->
addColumn($this->lng()->txt(
'identifier'));
71 $this->
addColumn($this->lng()->txt(
'translation'));
72 $this->
addColumn($this->lng()->txt(
'standard'));
73 $this->
addColumn($this->lng()->txt(
'actions'),
'',
'150px');
78 $field =
new ilTextInputGUI($this->lng()->txt(
'identifier'),
'identifier');
90 $this->filter[$field->
getPostVar()] = $field->getChecked();
92 $this->filter[$field->
getPostVar()] = $field->getValue();
102 $field = $this->facade->fieldFactory()->findById($a_set[
'id']);
104 $this->tpl->setVariable(
'FIELD_ID', $field->getId());
105 $this->tpl->setCurrentBlock(
"POSITION");
106 $this->tpl->setVariable(
'POSITION_VALUE', $this->position_index);
107 $this->tpl->parseCurrentBlock();
109 $this->tpl->setCurrentBlock(
"IDENTIFIER");
110 $this->tpl->setVariable(
'IDENTIFIER_VALUE', $field->getIdentifier());
111 $this->tpl->parseCurrentBlock();
113 $this->tpl->setCurrentBlock(
"TRANSLATION");
114 $this->tpl->setVariable(
'VAL_TRANSLATION', $this->facade->translationFactory()->translate($field));
115 $this->tpl->parseCurrentBlock();
117 $this->tpl->setCurrentBlock(
"STANDARD");
118 if ($field->getIsStandardField()) {
119 $this->tpl->setVariable(
'IS_STANDARD_VALUE', $this->lng()->txt(
'standard'));
121 $this->tpl->setVariable(
'IS_STANDARD_VALUE', $this->lng()->txt(
'custom'));
124 $this->tpl->parseCurrentBlock();
125 if ($this->parent_obj->checkPermissionBoolAndReturn(
'write')) {
129 $this->position_index++;
138 $selectionList->setListTitle($this->lng->txt(
'actions'));
146 $txt = $this->lng()->txt(
'translate');
147 $selectionList->addItem(
$txt,
'', $this->ctrl()
150 $this->tpl->setVariable(
'VAL_ACTIONS', $selectionList->getHTML());
160 foreach ($this->filter as $filter_key => $filter_value) {
161 switch ($filter_key) {
164 $filter->setFieldName($filter_key);
165 $filter->setFieldValue(
'%' . $filter_value .
'%');
171 $q->setSortingColumn(
'position');
172 $q->setSortingDirection(
'ASC');
174 $data = $this->facade->fieldFactory()
175 ->filterAllFieldsForTypeAsArray($this->facade->type(), $q);
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
Interface ilBiblFactoryFacadeInterface.
Interface ilBiblEntryInterface.
setExternalSegmentation($a_val)
Set external segmentation.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
determineLimit()
Determine the limit.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
Class ilBiblTableQueryInfo.
getFormAction()
Get Form action parameter.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
addAndReadFilterItem(ilFormPropertyGUI $field)
addActionMenu(ilBiblFieldInterface $field)
Class ilBiblAdminFieldTableGUI.
Class ilBiblTableQueryInfo.
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
__construct($a_parent_obj, ilBiblAdminFactoryFacadeInterface $facade)
ilBiblAdminFieldTableGUI constructor.
setEnableHeader($a_enableheader)
Set Enable Header.
fillRow($a_set)
Fills table rows with content from $a_set.