4 require_once(
"./Modules/DataCollection/classes/class.ilDataCollectionRecord.php");
5 require_once(
"./Modules/DataCollection/classes/class.ilDataCollectionField.php");
6 require_once(
"./Modules/DataCollection/classes/class.ilDataCollectionTable.php");
7 require_once(
"./Modules/DataCollection/classes/class.ilDataCollectionDatatype.php");
8 require_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
9 require_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
10 require_once(
'./Services/Utilities/classes/class.ilConfirmationGUI.php');
11 require_once(
'./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php');
85 $this->record_id =
$_REQUEST[
'record_id'];
95 $this->ctrl->saveParameter($this,
'mode');
96 $this->ctrl->setParameterByClass(
"ildatacollectionrecordlistgui",
"mode",
$_GET[
'mode']);
98 $this->ctrl->saveParameter($this,
'redirect');
99 if ($this->record_id) {
101 if (!$this->record->hasPermissionToEdit($this->parent_obj->ref_id) OR !$this->record->hasPermissionToView($this->parent_obj->ref_id)) {
104 $this->table = $this->record->getTable();
105 $this->table_id = $this->table->getId();
113 $cmd = $this->ctrl->getCmd();
126 if ($this->ctrl->isAsynch()) {
127 echo $this->form->getHTML();
130 $this->tpl->setContent(
"<script>ilDataCollection.strings.add_value='" . $this->lng->txt(
'add_value') .
"';</script>" 131 . $this->form->getHTML());
139 if ($this->ctrl->isAsynch()) {
140 echo $this->form->getHTML();
143 $this->tpl->setContent(
"<script>ilDataCollection.strings.add_value='" . $this->lng->txt(
'add_value') .
"';</script>" 144 . $this->form->getHTML());
151 $conf->setFormAction($this->ctrl->getFormAction($this));
152 $conf->setHeaderText($this->lng->txt(
'dcl_confirm_delete_record'));
154 $conf->addItem(
'record_id',
$record->getId(), implode(
", ",
$record->getRecordFieldValues()));
155 $conf->addHiddenItem(
'table_id', $this->table_id);
156 $conf->setConfirm($this->lng->txt(
'delete'),
'delete');
157 $conf->setCancel($this->lng->txt(
'cancel'),
'cancelDelete');
158 $this->tpl->setContent($conf->getHTML());
163 $this->ctrl->redirectByClass(
"ildatacollectionrecordlistgui",
"listRecords");
167 public function delete() {
170 if (!$this->table->hasPermissionToDeleteRecord($this->parent_obj->ref_id,
$record)) {
178 $this->ctrl->redirectByClass(
"ildatacollectionrecordlistgui",
"listRecords");
196 $return =
$record->getRecordFieldValues();
199 if ($this->ctrl->isAsynch()) {
200 echo json_encode($return);
213 $prefix = ($this->ctrl->isAsynch()) ?
'dclajax' :
'dcl';
214 $this->form->setId($prefix . $this->table_id . $this->record_id);
217 $hidden_prop->setValue($this->table_id);
218 $this->form->addItem($hidden_prop);
219 if ($this->record_id) {
221 $hidden_prop->setValue($this->record_id);
222 $this->form->addItem($hidden_prop);
225 $this->ctrl->setParameter($this,
"record_id", $this->record_id);
226 $this->form->setFormAction($this->ctrl->getFormAction($this));
227 $allFields = $this->table->getRecordFields();
229 foreach ($allFields as $field) {
231 if ($item === NULL) {
235 $fieldref = $field->getFieldRef();
238 if (!$field->isNRef()) {
239 $options[
""] = $this->lng->txt(
'dcl_please_select');
242 foreach ($reftable->getRecords() as
$record) {
244 switch ($reffield->getDatatypeId()) {
254 $options[
$record->getId()] = strtotime(
$record->getRecordFieldSingleHTML($fieldref));
256 $options2[
$record->getId()] =
$record->getRecordFieldSingleHTML($fieldref);
259 $options[
$record->getId()] =
$record->getRecordFieldValue($fieldref);
267 foreach (
$options as $key => $opt) {
277 if ($reftable->hasPermissionToAddRecord(
$_GET[
'ref_id'])) {
278 $item->addCustomAttribute(
'data-ref="1"');
279 $item->addCustomAttribute(
'data-ref-table-id="' . $reftable->getId() .
'"');
280 $item->addCustomAttribute(
'data-ref-field-id="' . $reffield->getId() .
'"');
285 if ($this->record_id) {
289 $item->setRequired($field->getRequired());
294 if ($this->record_id AND
$record->getId()) {
295 $field_value =
$record->getRecordFieldValue($field->getId());
297 $item->setRequired(
false);
301 if ($this->ctrl->isAsynch()) {
302 $item->setDisabled(
true);
307 $item->setDisabled(
true);
309 $this->form->addItem($item);
312 $this->tpl->addInlineCss($inline_css);
315 if ($this->record_id) {
316 $ownerField = $this->table->getField(
'owner');
318 $this->form->addItem($inputfield);
322 if ($this->record_id) {
323 $this->form->setTitle($this->lng->txt(
"dcl_update_record"));
324 $this->form->addCommandButton(
"save", $this->lng->txt(
"dcl_update_record"));
325 if (!$this->ctrl->isAsynch()) {
326 $this->form->addCommandButton(
"cancelUpdate", $this->lng->txt(
"cancel"));
329 $this->form->setTitle($this->lng->txt(
"dcl_add_new_record"));
330 $this->form->addCommandButton(
"save", $this->lng->txt(
"save"));
331 if (!$this->ctrl->isAsynch()) {
332 $this->form->addCommandButton(
"cancelSave", $this->lng->txt(
"cancel"));
335 $this->ctrl->setParameter($this,
"table_id", $this->table_id);
336 $this->ctrl->setParameter($this,
"record_id", $this->record_id);
349 $allFields = $this->table->getFields();
351 foreach ($allFields as $field) {
352 $value = $record_obj->getRecordFieldFormInput($field->getId());
353 $values[
'field_' . $field->getId()] = $value;
355 $values[
'record_id'] = $record_obj->getId();
356 $this->form->setValuesByArray($values);
384 $valid = $this->form->checkInput();
389 $record_obj->setTableId($this->table_id);
391 $record_obj->setLastEditBy($this->user->getId());
393 $create_mode =
false;
396 $all_fields = $this->table->getRecordFields();
398 $all_fields = $this->table->getEditableFields();
402 foreach ($all_fields as $field) {
404 $value = $this->form->getInput(
"field_" . $field->getId());
405 $field->checkValidity($value, $this->record_id);
408 $item = $this->form->getItemByPostVar(
'field_'.$field->getId());
415 if (!isset($this->record_id)) {
416 if (!($this->table->hasPermissionToAddRecord($this->parent_obj->ref_id))) {
421 $record_obj->setOwner($this->user->getId());
423 $record_obj->setTableId($this->table_id);
424 $record_obj->doCreate();
425 $this->record_id = $record_obj->getId();
428 if (!$record_obj->hasPermissionToEdit($this->parent_obj->ref_id)) {
435 foreach ($all_fields as $field) {
436 $value = $this->form->getInput(
"field_" . $field->getId());
441 && $this->form->getItemByPostVar(
"field_" . $field->getId())->getDeletionFlag()):
443 $record_obj->setRecordFieldValue($field->getId(), $value);
447 $record_obj->setRecordFieldValue($field->getId(), $value);
450 $record_obj->setRecordFieldValue($field->getId(), $value);
459 $this->
sendFailure($this->lng->txt(
'user_not_known'));
463 $record_obj->setOwner($owner_id);
469 $record_obj->doUpdate();
471 $this->ctrl->setParameter($this,
"table_id", $this->table_id);
472 $this->ctrl->setParameter($this,
"record_id", $this->record_id);
474 if (!$this->ctrl->isAsynch()) {
479 if ($this->ctrl->isAsynch()) {
481 $this->record_id = $record_obj->getId();
484 echo $this->tpl->getMessageHTML($this->lng->txt(
'msg_obj_modified'),
'success') . $this->form->getHTML();
487 $this->ctrl->redirectByClass(
"ildatacollectionrecordlistgui",
"listRecords");
491 $this->form->setValuesByPost();
492 if ($this->ctrl->isAsynch()) {
493 echo $this->form->getHTML();
496 $this->tpl->setContent($this->form->getHTML());
507 if ($force_redirect || (isset(
$_GET[
'redirect']) && !$this->ctrl->isAsynch())) {
508 switch ((
int)
$_GET[
'redirect']) {
509 case self::REDIRECT_DETAIL:
510 $this->ctrl->setParameterByClass(
'ildatacollectionrecordviewgui',
'record_id', $this->record_id);
511 $this->ctrl->setParameterByClass(
'ildatacollectionrecordviewgui',
'table_id', $this->table_id);
512 $this->ctrl->redirectByClass(
"ildatacollectionrecordviewgui",
"renderRecord");
514 case self::REDIRECT_RECORD_LIST:
515 $this->ctrl->redirectByClass(
"ildatacollectionrecordlistgui",
"listRecords");
518 $this->ctrl->redirectByClass(
"ildatacollectionrecordlistgui",
"listRecords");
525 if (!$this->ctrl->isAsynch()) {
527 $this->ctrl->redirectByClass(
'ildatacollectionrecordlistgui',
'listRecords');
529 echo $this->lng->txt(
'dcl_msg_no_perm_edit');
539 $keep = ($this->ctrl->isAsynch()) ?
false :
true;
540 $this->form->setValuesByPost();
541 if ($this->ctrl->isAsynch()) {
542 echo $this->tpl->getMessageHTML($message,
'failure') . $this->form->getHTML();
546 $this->tpl->setContent($this->form->getHTML());
555 $search =
$_POST[
'search_for'];
558 include_once
'./Services/Search/classes/class.ilQueryParser.php';
560 $query_parser->setMinWordLength(1,
true);
562 $query_parser->parse();
563 if (!$query_parser->validate()) {
564 $html .= $query_parser->getMessage() .
"<br />";
568 include_once
'Services/Search/classes/Like/class.ilLikeObjectSearch.php';
570 $res = $object_search->performSearch();
572 $res->filter(ROOT_FOLDER_ID,
true);
575 $html .= $this->lng->txt(
'dcl_no_search_results_found_for') .
' ' . $search .
"<br />";
580 $tpl =
new ilTemplate(
"tpl.dcl_tree.html",
true,
true,
"Modules/DataCollection");
581 foreach ((array)$entry[
'refs'] as $reference) {
582 include_once
'./Services/Tree/classes/class.ilPathGUI.php';
584 $tpl->setCurrentBlock(
'result');
585 $tpl->setVariable(
'RESULT_PATH',
$path->getPath(ROOT_FOLDER_ID, $reference) .
" » " . $entry[
'title']);
586 $tpl->setVariable(
'RESULT_REF', $reference);
587 $tpl->setVariable(
'FIELD_ID', $dest);
588 $tpl->parseCurrentBlock();
590 $html .=
$tpl->get();
607 foreach ($a_res as $obj_id => $references) {
611 $r[
'obj_id'] = $obj_id;
612 $r[
'refs'] = $references;
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
setFormValues()
Set values from object to form.
static getRecordCache($record_id=0)
Creates a path for a start and endnode.
const INPUTFORMAT_DATETIME
static hasWriteAccess($ref)
static _lookupId($a_user_str)
lookup id by login
static _lookupTitle($a_id)
lookup object title
checkAndPerformRedirect($force_redirect=false)
Checkes to what view (table or detail) should be redirected and performs redirect.
const REDIRECT_RECORD_LIST
Possible redirects after saving/updating a record - use GET['redirect'] to set constants.
searchObjects()
This function is only used by the ajax request if searching for ILIAS references. ...
Class ilObjDataCollectionGUI.
static getFieldCache($field_id=0)
if(!is_array($argv)) $options
static _lookupDescription($a_id)
lookup object description
special template class to simplify handling of ITX/PEAR
static getInputField(ilDataCollectionField $field)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
Class ilDataCollectionRecordEditGUI.
static sendNotification($a_action, $a_table_id, $a_record_id=NULL)
__construct(ilObjDataCollectionGUI $parent_obj)
if($_REQUEST['ilias_path']) define('ILIAS_HTTP_PATH' $_REQUEST['ilias_path']
parseSearchResults($a_res)
Parse search results.
cancelUpdate()
Cancel Update.
const INPUTFORMAT_REFERENCE
static _hasWriteAccess($ref)
static getTableCache($table_id=0)
getRecordData($record_id=0)
Return All fields and values from a record ID.
static hasAddRecordAccess($ref)
Confirmation screen class.