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) {
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)) {
132 $cmdClass =
$ilCtrl->getCmdClass();
143 $this->notesGUI->deleteNote();
147 $this->notesGUI->cancelDelete();
151 $this->notesGUI->$cmd();
168 $tpl->setContent($table_gui->getHTML());
178 $ilTabs = $DIC->tabs();
179 $tpl = $DIC->ui()->mainTemplate();
184 $ilTabs->setTabActive(
"id_content");
186 if (!$this->tableview_id) {
187 $ilCtrl->redirectByClass(
"ildclrecordlistgui",
"listRecords");
194 $html = $pageObj->getHTML();
195 $rctpl->addCss(
"./Services/COPage/css/content.css");
196 $rctpl->fillCssFiles();
198 foreach (
$table->getRecordFields() as $field) {
200 $pattern =
'/\[dcliln field="' . preg_quote($field->getTitle(),
"/") .
'"\](.*?)\[\/dcliln\]/';
201 if (preg_match($pattern, $html)) {
202 $html = preg_replace($pattern, $this->record_obj->getRecordFieldSingleHTML($field->getId(), $this->
setOptions(
"$1")), $html);
206 $pattern =
'/\[dclrefln field="' . preg_quote($field->getTitle(),
"/") .
'"\](.*?)\[\/dclrefln\]/';
207 if (preg_match($pattern, $html)) {
208 $this->currentField = $field;
209 $html = preg_replace_callback($pattern, array($this,
"doReplace"), $html);
212 $pattern =
'/\[ext tableOf="' . preg_quote($field->getTitle(),
"/") .
'" field="(.*?)"\]/';
213 if (preg_match($pattern, $html)) {
214 $this->currentField = $field;
215 $html = preg_replace_callback($pattern, array($this,
"doExtReplace"), $html);
218 $html = str_ireplace(
"[" . $field->getTitle() .
"]", $this->record_obj->getRecordFieldSingleHTML($field->getId()), $html);
220 foreach (
$table->getStandardFields() as $field) {
221 $html = str_ireplace(
"[" . $field->getId() .
"]", $this->record_obj->getRecordFieldSingleHTML($field->getId()), $html);
223 $rctpl->setVariable(
"CONTENT", $html);
226 $tpl->setPermanentLink(
228 filter_input(INPUT_GET,
'ref_id', FILTER_VALIDATE_INT),
229 '_' . $this->tableview_id .
'_' . $this->record_obj->getId()
234 if ($this->is_enabled_paging) {
236 $rctpl->setVariable(
'PREV_NEXT_RECORD_LINKS', $prevNextLinks);
237 $ilCtrl->clearParameters($this);
238 $rctpl->setVariable(
'FORM_ACTION',
$ilCtrl->getFormAction($this));
239 $rctpl->setVariable(
'RECORD', $this->lng->txt(
'dcl_record'));
240 $rctpl->setVariable(
'RECORD_FROM_TOTAL', sprintf($this->lng->txt(
'dcl_record_from_total'),
$this->current_record_position, count($this->record_ids)));
241 $rctpl->setVariable(
'TABLEVIEW_ID', $this->tableview_id);
246 if ($this->record_obj->hasPermissionToEdit((
int)
$_GET[
'ref_id'])) {
248 $ilCtrl->setParameterByClass(
'ildclrecordeditgui',
'table_id', $this->table->getId());
249 $ilCtrl->setParameterByClass(
'ildclrecordeditgui',
'tableview_id', $this->tableview_id);
251 $ilCtrl->saveParameterByClass(
'ildclrecordeditgui',
'record_id');
252 $button->setUrl(
$ilCtrl->getLinkTargetByClass(
'ildclrecordeditgui',
'edit'));
253 $button->setCaption($this->lng->txt(
'dcl_edit_record'),
false);
254 $rctpl->setVariable(
'EDIT_RECORD_BUTTON', $button->render());
258 if ($this->table->getPublicCommentsEnabled()) {
259 $rctpl->setVariable(
'COMMENTS', $this->
renderComments($editComments));
262 $tpl->setContent($rctpl->get());
273 return $this->record_obj->getRecordFieldSingleHTML($this->currentField->getId(), $this->
setOptions($found[1]));
284 $ref_rec_ids = $this->record_obj->getRecordFieldValue($this->currentField->getId());
285 if (!is_array($ref_rec_ids)) {
286 $ref_rec_ids = array($ref_rec_ids);
288 if (!count($ref_rec_ids) || !$ref_rec_ids) {
292 foreach ($ref_rec_ids as $ref_rec_id) {
295 $field = $ref_recs[0]->getTable()->getFieldByTitle($found[1]);
297 $tpl =
new ilTemplate(
"tpl.reference_list.html",
true,
true,
"Modules/DataCollection");
298 $tpl->setCurrentBlock(
"reference_list");
302 ilUtil::sendInfo(
"Bad Viewdefinition at [ext tableOf=\"" . $found[1] .
"\" ...]",
true);
308 foreach ($ref_recs as $ref_record) {
309 $tpl->setCurrentBlock(
"reference");
310 $tpl->setVariable(
"CONTENT", $ref_record->getRecordFieldHTML($field->getId()));
311 $tpl->parseCurrentBlock();
324 return $this->notesGUI->getOnlyCommentsHtml();
326 return $this->notesGUI->editNoteForm();
336 if (!isset(
$_SESSION[
'dcl_record_ids']) ||
$_SESSION[
'dcl_table_id'] != $this->table->getId()) {
341 $this->record_ids =
$_SESSION[
'dcl_record_ids'];
342 foreach ($this->record_ids as $k => $recId) {
343 if ($recId == $this->record_id) {
345 $this->prev_record_id = $this->record_ids[$k - 1];
347 if (($k + 1) < count($this->record_ids)) {
348 $this->next_record_id = $this->record_ids[$k + 1];
350 $this->current_record_position = $k + 1;
367 $ilCtrl->setParameter($this,
'tableview_id', $this->tableview_id);
368 $prevStr = $this->lng->txt(
'dcl_prev_record');
369 $nextStr = $this->lng->txt(
'dcl_next_record');
370 $ilCtrl->setParameter($this,
'record_id', $this->prev_record_id);
371 $url =
$ilCtrl->getLinkTarget($this,
'renderRecord');
374 $ilCtrl->setParameter($this,
'record_id', $this->next_record_id);
375 $url =
$ilCtrl->getLinkTarget($this,
'renderRecord');
390 foreach ($this->record_ids as $k => $recId) {
391 $selected = ($recId == $this->record_id) ?
" selected" :
"";
392 $out .=
"<option value='{$recId}'{$selected}>" . ($k + 1) .
"</option>";
406 $options[
'link'][
'display'] =
true;
407 $options[
'link'][
'name'] = $link_name;
421 $this->table->getPartialRecords($list->getOrderField(), $list->getOrderDirection(), $list->getLimit(), $list->getOffset(), $list->getFilter());
430 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.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
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)
determineNextPrevRecords()
Find the previous/next record from the current position.