37 $result =
$ilDB->query(
"SELECT * FROM il_dcl_data WHERE id = " .
$ilDB->quote($this->getId(),
"integer"));
49 protected function doCreate(
bool $clone_mode =
false): void
53 $ilLog = $DIC[
'ilLog'];
55 $ilLog->write(
'doCreate');
60 $main_table->setObjId($this->
getId());
61 $main_table->setTitle($this->
getTitle());
62 $main_table->setAddPerm(1);
63 $main_table->setEditPerm(1);
64 $main_table->setDeletePerm(0);
65 $main_table->setDeleteByOwner(1);
66 $main_table->setEditByOwner(1);
67 $main_table->setLimited(0);
68 $main_table->setIsVisible(
true);
69 $main_table->doCreate();
75 "id" => array(
"integer", $this->
getId()),
76 "is_online" => array(
"integer", (
int) $this->
getOnline()),
77 "rating" => array(
"integer", (
int) $this->
getRating()),
79 "approval" => array(
"integer", (
int) $this->
getApproval()),
91 $table->doDelete(
false,
true);
94 $query =
"DELETE FROM il_dcl_data WHERE id = " .
$ilDB->quote($this->
getId(),
"integer");
101 $ilDB = $DIC[
'ilDB'];
106 "id" => array(
"integer", $this->
getId()),
107 "is_online" => array(
"integer", (
int) $this->
getOnline()),
108 "rating" => array(
"integer", (
int) $this->
getRating()),
109 "public_notes" => array(
"integer", (
int) $this->
getPublicNotes()),
110 "approval" => array(
"integer", (
int) $this->
getApproval()),
114 "id" => array(
"integer", $this->
getId()),
124 public function sendNotification($a_action, $a_table_id, $a_record_id = null)
145 if (!count($users)) {
157 foreach (array_unique($users) as $idx => $user_id) {
160 $ilDclTable =
new ilDclTable($record->getTableId());
161 if ($user_id !=
$ilUser->getId() && $ilDclTable->hasPermissionToViewRecord(filter_input(
164 ), $record, $user_id)) {
167 $ulng->loadLanguageModule(
'dcl');
169 $subject = sprintf($ulng->txt(
'dcl_change_notification_subject'), $this->
getTitle());
172 $message .= $ulng->txt(
'dcl_change_notification_dcl_' . $a_action) .
":\n\n";
173 $message .= $ulng->txt(
'obj_dcl') .
": " . $this->
getTitle() .
"\n\n";
174 $message .= $ulng->txt(
'dcl_table') .
": " . $obj_table->getTitle() .
"\n\n";
175 $message .= $ulng->txt(
'dcl_record') .
":\n";
176 $message .=
"------------------------------------\n";
178 if (!$record->getTableId()) {
179 $record->setTableId($a_table_id);
184 if ($tableview_id = $record->getTable()->getFirstTableViewId($this->
getRefId(), $user_id)) {
185 $visible_fields = ilDclTableView::find($tableview_id)->getVisibleFields();
186 if (empty($visible_fields)) {
190 foreach ($visible_fields as $field) {
191 if ($field->isStandardField()) {
192 $value = $record->getStandardFieldPlainText($field->getId());
193 } elseif ($record_field = $record->getRecordField($field->getId())) {
194 $value = $record_field->getPlainText();
198 $t .= $field->getTitle() .
": " . $value .
"\n";
204 $message .=
"------------------------------------\n";
207 $message .= $ulng->txt(
'dcl_change_notification_link') .
": " . $link .
"\n\n";
209 $message .= $ulng->txt(
'dcl_change_why_you_receive_this_email');
212 $mail_obj->appendInstallationSignature(
true);
224 public function getFirstVisibleTableId():
int 228 $ilDB = $DIC[
'ilDB'];
231 $result =
$ilDB->query(
232 'SELECT id FROM il_dcl_table 233 WHERE obj_id = ' .
$ilDB->quote($this->getId(),
'integer') .
234 $only_visible .
' ORDER BY -table_order DESC' 239 if (!$result->numRows() && $only_visible) {
241 $result =
$ilDB->query(
242 'SELECT id FROM il_dcl_table 243 WHERE obj_id = ' .
$ilDB->quote($this->getId(),
'integer') .
' ORDER BY -table_order DESC ' 247 return $ilDB->fetchObject($result)->id;
254 foreach ($table_order as
$title) {
257 $table->setOrder($order);
277 if (!$cp_options->isRootNode($this->getRefId())) {
278 $new_obj->setOnline(
true);
281 $new_obj->cloneStructure($this->
getRefId());
295 $this->
setRating($original->getRating());
303 foreach ($original->getTables() as $table) {
305 $new_table->setObjId($this->
getId());
306 $new_table->cloneStructure($table);
313 $table->afterClone();
322 $this->is_online = $a_val;
335 $this->rating = $a_val;
345 $this->public_notes = $a_val;
355 $this->approval = $a_val;
399 $ilDB = $DIC[
'ilDB'];
401 $query =
"SELECT id FROM il_dcl_table WHERE obj_id = " .
$ilDB->quote($this->
getId(),
"integer") .
402 " ORDER BY -table_order DESC";
406 while ($rec =
$ilDB->fetchAssoc($set)) {
422 if ($table->getIsVisible() && $table->getVisibleTableViews($this->ref_id)) {
423 $tables[$table->getId()] = $table;
439 $ilDB = $DIC[
'ilDB'];
440 $result =
$ilDB->query(
441 'SELECT * FROM il_dcl_table WHERE obj_id = ' .
$ilDB->quote($obj_id,
'integer') .
' AND title = ' 442 .
$ilDB->quote($title,
'text')
445 return (
$ilDB->numRows($result)) ?
true :
false;
455 if (preg_match_all(
'/<.*?br.*?>/', $body, $matches)) {
456 $matches = array_unique($matches[0]);
457 $brNewLineMatches = array_map(
static function ($match):
string {
458 return $match .
"\n";
462 $body = str_replace(
"\r",
'', $body);
464 $body = str_replace($brNewLineMatches,
"\n", $body);
466 $body = str_replace($matches,
"\n", $body);
468 return str_replace(
"\n",
"\r\n", $body);
const TYPE_DATACOLLECTION
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static _lookupFullname(int $a_user_id)
static _getTableIdByTitle(string $title, int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _hasTableByTitle(string $title, int $obj_id)
Checks if a DataCollection has a table with a given title.
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=null)
Clone DCL.
static getNotificationsForObject(int $type, int $id, ?int $page_id=null, bool $ignore_threshold=false)
Get all users/recipients for given object.
prepareMessageText(string $body)
const TYPE_DATA_COLLECTION
static _hasWriteAccess(int $ref)
static _hasReadAccess(int $ref)
setPublicNotes(string $a_val)
static getTableCache(int $table_id=null)
static _getLanguageOfUser(int $a_usr_id)
Get language object of user.
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
static hasWriteAccess(int $ref, ?int $user_id=0)
static setCloneOf(int $old, int $new, string $type)
setApproval(string $a_val)
static updateNotificationTime(int $type, int $id, array $user_ids, ?int $page_id=null, bool $activate_new_entries=true)
Update the last mail timestamp for given object and users.
static getRecordCache(?int $record_id)
doCreate(bool $clone_mode=false)
setOnline($a_val)
setOnline
static hasReadAccess(int $ref, ?int $user_id=0)
static _getInstance(int $a_copy_id)
getTableById(int $table_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
cloneStructure(int $original_id)
Attention only use this for objects who have not yet been created (use like: $x = new ilObjDataCollec...
setNotification(string $a_val)
reorderTables(array $table_order)
static _lookupLogin(int $a_user_id)