40 ILIAS\
UI\Renderer $a_ui_renderer,
41 bool $a_is_editable =
false 43 $this->webdav_uri_builder = $a_webdav_uri_builder;
44 $this->ui_factory = $a_ui_factory;
45 $this->ui_renderer = $a_ui_renderer;
46 $this->is_editable = $a_is_editable;
48 $this->
setId(
'mount_instructions_documents');
61 isset($column[
'sortable']) && $column[
'sortable'] ? $column[
'field'] :
'',
62 isset($column[
'width']) ? $column[
'width'] :
'',
63 isset($column[
'is_checkbox']) ? (
bool) $column[
'is_checkbox'] :
false 68 $this->
setTitle($this->lng->txt(
'webdav_tbl_docs_title'));
69 $this->
setFormAction($this->ctrl->getFormAction($this->getParentObject(), $a_command));
77 $this->
setRowTemplate(
'tpl.webdav_documents_row.html',
'Services/WebDAV');
79 if ($this->is_editable) {
81 $this->
addCommandButton(
'saveDocumentSorting', $this->lng->txt(
'sorting_save'));
89 $this->provider = $a_provider;
108 return isset($column[
'optional']) && $column[
'optional'];
112 foreach ($optional_columns as
$index => $column) {
113 $columns[$column[
'field']] = $column;
122 if (array_key_exists($a_index, $column_definition)) {
123 $column = $column_definition[$a_index];
124 if (isset($column[
'optional']) && !$column[
'optional']) {
129 is_array($this->visible_optional_columns) &&
130 array_key_exists($column[
'field'], $this->visible_optional_columns)
148 $this->tpl->setCurrentBlock(
'column');
150 if ((
string) $value ===
'') {
151 $this->tpl->touchBlock(
'column');
153 $this->tpl->setVariable(
'COLUMN_VALUE', $value);
156 $this->tpl->parseCurrentBlock();
167 'field' =>
'sorting',
168 'txt' => $this->lng->txt(
'meta_order',
'meta'),
177 'txt' => $this->lng->txt(
'webdav_tbl_docs_head_title'),
185 'field' =>
'creation_ts',
186 'txt' => $this->lng->txt(
'created'),
193 'field' =>
'modification_ts',
194 'txt' => $this->lng->txt(
'last_change'),
201 'field' =>
'language',
202 'txt' => $this->lng->txt(
'language'),
208 if ($this->is_editable) {
210 'field' =>
'actions',
211 'txt' => $this->lng->txt(
'actions'),
232 $params[
'limit'] = $this->
getLimit();
241 $filter = (array) $this->filter;
243 foreach ($this->optional_filters as $key => $value) {
245 $filter[$key] = $value;
255 $params[
'limit'] = $this->
getLimit();
261 $this->preProcessData(
$data);
269 protected function preProcessData(array &
$data) :
void 275 foreach ($data[
'items'] as $key => $document) {
276 $data[
'items'][$key] = [
277 'id' => $document->getId(),
278 'title' => $document->getTitle(),
279 'creation_ts' => $document->getCreationTs(),
280 'modification_ts' => $document->getModificationTs(),
281 'raw_text' => $document->getUploadedInstructions(),
282 'processed_text' => $document->getProcessedInstructions(),
283 'language' => $document->getLanguage(),
290 if (in_array($a_column, [
'creation_ts',
'modification_ts'])) {
292 } elseif (
'sorting' === $a_column) {
294 } elseif (
'title' === $a_column) {
296 } elseif (
'actions' === $a_column) {
298 } elseif (
'language' === $a_column) {
302 return trim($a_row[$a_column]);
307 if (!$this->is_editable) {
311 $this->ctrl->setParameter($this->
getParentObject(),
'webdav_id', $a_row[
'id']);
313 $edit_btn = $this->ui_factory
316 $this->lng->txt(
'edit'),
317 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showEditDocumentForm')
320 $delete_modal = $this->ui_factory
323 $this->lng->txt(
'webdav_doc_delete'),
324 $this->lng->txt(
'webdav_sure_delete_documents_s') .
' ' . $a_row[
'title'],
328 $delete_btn = $this->ui_factory
330 ->shy($this->lng->txt(
'delete'),
'#')
331 ->withOnClick($delete_modal->getShowSignal());
333 $this->ui_components[] = $delete_modal;
335 $this->ctrl->setParameter($this->
getParentObject(),
'webdav_id', null);
337 $drop_down = $this->ui_factory
339 ->standard([$edit_btn, $delete_btn])
340 ->withLabel($this->lng->txt(
'actions'));
342 return $this->ui_renderer->render($drop_down);
347 return $a_row[$a_column];
352 if ($a_row[
'processed_text'] == null) {
353 $a_row[
'processed_text'] =
'';
358 $url = $uri_builder->getUriToMountInstructionModalByLanguage($a_row[
'language']);
359 $title_link = $this->ui_factory
361 ->shy($a_row[$a_column],
'#')
362 ->withAdditionalOnLoadCode(
function ($id) use ($url) {
363 return "$('#$id').click(function(){ triggerWebDAVModal('$url');});";
366 return $this->ui_renderer->render([$title_link]);
371 $value = ($this->i++) * $this->factor;
372 if (!$this->is_editable) {
377 $sorting_field->setValue($value);
378 $sorting_field->setMaxLength(4);
379 $sorting_field->setSize(2);
381 return $sorting_field->render();
386 return parent::getHTML() . $this->ui_renderer->render($this->ui_components);
__construct(ilWebDAVMountInstructionsUploadGUI $a_parent_obj, ilWebDAVUriBuilder $a_webdav_uri_builder, string $a_command, ILIAS\UI\Factory $a_ui_factory, ILIAS\UI\Renderer $a_ui_renderer, bool $a_is_editable=false)
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
getExternalSorting()
Get external sorting.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
static maybeRenderWebDAVModalInGlobalTpl()
This is kind of a singleton pattern.
onBeforeDataFetched(array &$a_params, array &$a_filter)
Class ChatMainBarProvider .
setExternalSegmentation($a_val)
Set external segmentation.
resetOffset($a_in_determination=false)
Reset offset.
isColumnVisible(int $a_index)
getOrderDirection()
Get order direction.
getParentObject()
Get parent object.
prepareRow(array &$a_row)
formatActionsDropDown(string $a_column, array $a_row)
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
formatTitle(string $a_column, array $a_row)
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
getExternalSegmentation()
Get external segmentation.
getSelectedColumns()
Get selected columns.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
formatCellValue(string $a_column, array $a_row)
isFilterSelected($a_col)
Is given filter selected?
determineOffsetAndOrder($a_omit_offset=false)
Determine offset and order.
determineSelectedFilters()
Determine selected filters.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
formatLanguage(string $a_column, array $a_row)
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.
setProvider(ilWebDAVMountInstructionsTableDataProvider $a_provider)
setMaxCount($a_max_count)
set max.
formatSorting(array $a_row)
setLimit($a_limit=0, $a_default_limit=0)
$visible_optional_columns