ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
class.ilObjectDataDeletionLog.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
12
class
ilObjectDataDeletionLog
13
{
14
public
static
function
add
(
ilObject
$a_object)
15
{
16
global
$DIC
;
17
18
$ilDB
= $DIC->database();
19
20
$ilDB
->insert(
"object_data_del"
,
array
(
21
"obj_id"
=>
array
(
"integer"
, $a_object->
getId
()),
22
"type"
=>
array
(
"text"
, $a_object->
getType
()),
23
"title"
=>
array
(
"text"
, $a_object->
getTitle
()),
24
"tstamp"
=>
array
(
"integer"
,
time
())
25
));
26
}
27
28
public
static
function
get
($a_object_id)
29
{
30
global
$DIC
;
31
32
$ilDB
= $DIC->database();
33
34
$set =
$ilDB
->query(
"SELECT * FROM object_data_del"
.
35
" WHERE obj_id = "
.
$ilDB
->quote($a_object_id,
"integer"
));
36
return
$ilDB
->fetchAssoc($set);
37
}
38
}
ilObjectDataDeletionLog
Definition:
class.ilObjectDataDeletionLog.php:12
ilObject
$DIC
global $DIC
Definition:
saml.php:7
ilObject\getId
getId()
get object id public
Definition:
class.ilObject.php:308
ilObjectDataDeletionLog\add
static add(ilObject $a_object)
Definition:
class.ilObjectDataDeletionLog.php:14
ilObject\getTitle
getTitle()
get object title public
Definition:
class.ilObject.php:384
ilObject\getType
getType()
get object type public
Definition:
class.ilObject.php:349
array
Create styles array
The data for the language used.
Definition:
40duplicateStyle.php:19
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
time
Add data(end) time
Method that wraps PHPs time in order to allow simulations with the workflow.
Definition:
40duplicateStyle.php:39
Services
Object
classes
class.ilObjectDataDeletionLog.php
Generated on Sat Jan 18 2025 19:01:35 for ILIAS by
1.8.13 (using
Doxyfile
)