70 $ilCtrl = $DIC[
'ilCtrl'];
72 $this->dcl_gui_object = $a_dcl_object;
75 $this->record_id = (int) $_REQUEST[
'record_id'];
78 if (!$this->record_obj->hasPermissionToView((
int)
$_GET[
'ref_id'])) {
80 $ilCtrl->redirectByClass(
'ildclrecordlistgui',
'listRecords');
84 $tpl->setCurrentBlock(
"SyntaxStyle");
86 $tpl->parseCurrentBlock();
88 $tpl->setCurrentBlock(
"ContentStyle");
90 $tpl->parseCurrentBlock();
92 $this->table = $this->record_obj->getTable();
95 $repId = $this->dcl_gui_object->getDataCollectionObject()->getId();
96 $objId = (int) $this->record_id;
98 $this->notesGUI->enablePublicNotes(
true);
99 $this->notesGUI->enablePublicNotesDeletion(
true);
100 $ilCtrl->setParameterByClass(
"ilnotegui",
"record_id", $this->record_id);
101 $ilCtrl->setParameterByClass(
"ilnotegui",
"rep_id", $repId);
103 if (isset($_GET[
'disable_paging']) && $_GET[
'disable_paging']) {
104 $this->is_enabled_paging =
false;
107 if ($this->is_enabled_paging) {
116 $ilCtrl = $DIC[
'ilCtrl'];
117 $this->tableview_id =
$_GET[
'tableview_id'] ?
$_GET[
'tableview_id'] : $this->table->getFirstTableViewId(
$_GET[
'ref_id']);
118 $ilCtrl->setParameter($this,
'tableview_id', $this->tableview_id);
119 $ilCtrl->setParameter($this->dcl_gui_object,
'tableview_id',
$_GET[
'back_tableview_id'] ?
$_GET[
'back_tableview_id'] : $this->tableview_id);
122 if ($this->table->getVisibleTableViews(
$_GET[
'ref_id'],
true)) {
131 $cmd = $ilCtrl->getCmd();
132 $cmdClass = $ilCtrl->getCmdClass();
135 $ilCtrl->forwardCommand($this->notesGUI);
150 $tpl->setContent($table_gui->getHTML());
160 $ilTabs = $DIC->tabs();
161 $tpl = $DIC->ui()->mainTemplate();
162 $ilCtrl = $DIC->ctrl();
166 $ilTabs->setTabActive(
"id_content");
168 if (!$this->tableview_id) {
169 $ilCtrl->redirectByClass(
"ildclrecordlistgui",
"listRecords");
176 $html = $pageObj->getHTML();
177 $rctpl->addCss(
"./Services/COPage/css/content.css");
178 $rctpl->fillCssFiles();
180 foreach (
$table->getRecordFields() as $field) {
182 $pattern =
'/\[dcliln field="' . preg_quote($field->getTitle(),
"/") .
'"\](.*?)\[\/dcliln\]/';
183 if (preg_match($pattern, $html)) {
184 $html = preg_replace($pattern, $this->record_obj->getRecordFieldSingleHTML($field->getId(), $this->
setOptions(
"$1")), $html);
188 $pattern =
'/\[dclrefln field="' . preg_quote($field->getTitle(),
"/") .
'"\](.*?)\[\/dclrefln\]/';
189 if (preg_match($pattern, $html)) {
190 $this->currentField = $field;
191 $html = preg_replace_callback($pattern, array($this,
"doReplace"), $html);
194 $pattern =
'/\[ext tableOf="' . preg_quote($field->getTitle(),
"/") .
'" field="(.*?)"\]/';
195 if (preg_match($pattern, $html)) {
196 $this->currentField = $field;
197 $html = preg_replace_callback($pattern, array($this,
"doExtReplace"), $html);
200 $html = str_ireplace(
"[" . $field->getTitle() .
"]", $this->record_obj->getRecordFieldSingleHTML($field->getId()), $html);
202 foreach (
$table->getStandardFields() as $field) {
203 $html = str_ireplace(
"[" . $field->getId() .
"]", $this->record_obj->getRecordFieldSingleHTML($field->getId()), $html);
205 $rctpl->setVariable(
"CONTENT", $html);
208 $tpl->setPermanentLink(
210 filter_input(INPUT_GET,
'ref_id', FILTER_VALIDATE_INT),
211 '_' . $this->tableview_id .
'_' . $this->record_obj->getId()
216 if ($this->is_enabled_paging) {
218 $rctpl->setVariable(
'PREV_NEXT_RECORD_LINKS', $prevNextLinks);
219 $ilCtrl->clearParameters($this);
220 $rctpl->setVariable(
'FORM_ACTION', $ilCtrl->getFormAction($this));
221 $rctpl->setVariable(
'RECORD', $this->lng->txt(
'dcl_record'));
222 $rctpl->setVariable(
'RECORD_FROM_TOTAL', sprintf($this->lng->txt(
'dcl_record_from_total'),
$this->current_record_position, count($this->record_ids)));
223 $rctpl->setVariable(
'TABLEVIEW_ID', $this->tableview_id);
228 if ($this->record_obj->hasPermissionToEdit((
int)
$_GET[
'ref_id'])) {
230 $ilCtrl->setParameterByClass(
'ildclrecordeditgui',
'table_id', $this->table->getId());
231 $ilCtrl->setParameterByClass(
'ildclrecordeditgui',
'tableview_id', $this->tableview_id);
233 $ilCtrl->saveParameterByClass(
'ildclrecordeditgui',
'record_id');
234 $button->setUrl($ilCtrl->getLinkTargetByClass(
'ildclrecordeditgui',
'edit'));
235 $button->setCaption($this->lng->txt(
'dcl_edit_record'),
false);
236 $rctpl->setVariable(
'EDIT_RECORD_BUTTON', $button->render());
240 if ($this->table->getPublicCommentsEnabled()) {
241 $rctpl->setVariable(
'COMMENTS', $this->
renderComments($editComments));
244 $tpl->setContent($rctpl->get());
255 return $this->record_obj->getRecordFieldSingleHTML($this->currentField->getId(), $this->
setOptions($found[1]));
266 $ref_rec_ids = $this->record_obj->getRecordFieldValue($this->currentField->getId());
267 if (!is_array($ref_rec_ids)) {
268 $ref_rec_ids = array($ref_rec_ids);
270 if (!count($ref_rec_ids) || !$ref_rec_ids) {
274 foreach ($ref_rec_ids as $ref_rec_id) {
277 $field = $ref_recs[0]->getTable()->getFieldByTitle($found[1]);
279 $tpl =
new ilTemplate(
"tpl.reference_list.html",
true,
true,
"Modules/DataCollection");
280 $tpl->setCurrentBlock(
"reference_list");
284 ilUtil::sendInfo(
"Bad Viewdefinition at [ext tableOf=\"" . $found[1] .
"\" ...]",
true);
290 foreach ($ref_recs as $ref_record) {
291 $tpl->setCurrentBlock(
"reference");
292 $tpl->setVariable(
"CONTENT", $ref_record->getRecordFieldHTML($field->getId()));
293 $tpl->parseCurrentBlock();
306 $this->notesGUI::initJavascript($DIC->ctrl()->getLinkTarget($this));
308 return $this->notesGUI->getOnlyCommentsHtml();
310 return $this->notesGUI->editNoteForm();
320 if (!isset(
$_SESSION[
'dcl_record_ids']) ||
$_SESSION[
'dcl_table_id'] != $this->table->getId()) {
325 $this->record_ids =
$_SESSION[
'dcl_record_ids'];
326 foreach ($this->record_ids as $k => $recId) {
327 if ($recId == $this->record_id) {
329 $this->prev_record_id = $this->record_ids[$k - 1];
331 if (($k + 1) < count($this->record_ids)) {
332 $this->next_record_id = $this->record_ids[$k + 1];
334 $this->current_record_position = $k + 1;
350 $ilCtrl = $DIC[
'ilCtrl'];
351 $ilCtrl->setParameter($this,
'tableview_id', $this->tableview_id);
352 $prevStr = $this->lng->txt(
'dcl_prev_record');
353 $nextStr = $this->lng->txt(
'dcl_next_record');
354 $ilCtrl->setParameter($this,
'record_id', $this->prev_record_id);
355 $url = $ilCtrl->getLinkTarget($this,
'renderRecord');
358 $ilCtrl->setParameter($this,
'record_id', $this->next_record_id);
359 $url = $ilCtrl->getLinkTarget($this,
'renderRecord');
374 foreach ($this->record_ids as $k => $recId) {
375 $selected = ($recId == $this->record_id) ?
" selected" :
"";
376 $out .=
"<option value='{$recId}'{$selected}>" . ($k + 1) .
"</option>";
390 $options[
'link'][
'display'] =
true;
391 $options[
'link'][
'name'] = $link_name;
405 $this->table->getPartialRecords($list->getOrderField(), $list->getOrderDirection(), $list->getLimit(), $list->getOffset(), $list->getFilter());
414 return ilObjDataCollectionAccess::hasAccessTo(filter_input(INPUT_GET,
'ref_id'), $this->table->getId(),
$this->tableview_id)
static getContentStylePath($a_style_id, $add_random=true, $add_token=true)
get content style path
special template class to simplify handling of ITX/PEAR
renderComments($edit=false)
loadSession()
If we come from a goto Link we need to build up the session data.
renderSelectOptions()
Render select options.
Class ilDclDetailedViewDefinitionGUI.
static getTableCache($table_id=0)
Class ilDclTableViewTableGUI.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Class ilObjDataCollectionGUI.
setOptions($link_name)
setOptions string $link_name
renderPrevNextLinks()
Determine and return the markup for the previous/next records.
static getEffectiveContentStyleId($a_style_id, $a_type="")
Get effective Style Id.
static hasWriteAccess($ref, $user_id=0)
static getRecordCache($record_id=0)
renderRecord($editComments=false)
Class ilDclBaseFieldModel.
static getSyntaxStylePath()
get syntax style path
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
__construct(ilObjDataCollectionGUI $a_dcl_object)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl
determineNextPrevRecords()
Find the previous/next record from the current position.