24 $ilDB = $DIC->database();
31 unset($this->object_data_cache[$a_obj_id]);
41 return (
int) @$this->reference_cache[$a_ref_id];
49 return @$this->object_data_cache[$a_obj_id][
'title'];
58 return @$this->object_data_cache[$a_obj_id][
'type'];
66 return @$this->object_data_cache[$a_obj_id][
'owner'];
74 return @$this->object_data_cache[$a_obj_id][
'description'];
82 return @$this->object_data_cache[$a_obj_id][
'last_update'];
95 return (
bool) $this->object_data_cache[$a_obj_id][
'offline'];
111 #static $not_cached = 0; 113 if (@$this->reference_cache[$a_ref_id]) {
114 #echo "Reference ". ++$cached ."cached<br>"; 117 #echo "Reference ". ++$not_cached ." not cached<br>"; 131 static $not_cached = 0;
134 if (@$this->object_data_cache[$a_obj_id]) {
135 #echo "Object ". ++$cached ."cached<br>"; 138 #echo "Object ". ++$not_cached ." not cached<br>"; 156 $query =
"SELECT obj_id FROM object_reference WHERE ref_id = " .
$ilDB->quote($a_ref_id,
'integer');
159 $this->reference_cache[$a_ref_id] = $row[
'obj_id'];
161 return (
int) @$this->reference_cache[$a_ref_id];
176 $objDefinition = $DIC[
"objDefinition"];
179 if (is_object(
$ilUser) && $a_lang ==
"") {
180 $a_lang =
$ilUser->getLanguage();
183 $query =
"SELECT object_data.*, object_description.description as long_description " .
184 "FROM object_data LEFT JOIN object_description ON object_data.obj_id = object_description.obj_id " .
185 "WHERE object_data.obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
188 $this->object_data_cache[$a_obj_id][
'title'] = $row->title;
189 $this->object_data_cache[$a_obj_id][
'description'] = $row->description;
190 if ($row->long_description !== null) {
191 $this->object_data_cache[$a_obj_id][
'description'] = $row->long_description;
193 $this->object_data_cache[$a_obj_id][
'type'] = $row->type;
194 $this->object_data_cache[$a_obj_id][
'owner'] = $row->owner;
195 $this->object_data_cache[$a_obj_id][
'last_update'] = $row->last_update;
196 $this->object_data_cache[$a_obj_id][
'offline'] = $row->offline;
198 if (is_object($objDefinition)) {
199 $translation_type = $objDefinition->getTranslationType($row->type);
202 if ($translation_type ==
"db") {
203 if (!$this->trans_loaded[$a_obj_id]) {
204 $q =
"SELECT title,description FROM object_translation " .
205 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" " .
206 "AND lang_code = " .
$ilDB->quote($a_lang,
'text') .
" " .
207 "AND NOT lang_default = 1";
208 $r =
$ilDB->query($q);
212 $this->object_data_cache[$a_obj_id][
'title'] = $row->title;
213 $this->object_data_cache[$a_obj_id][
'description'] = $row->description;
214 $this->description_trans[] = $a_obj_id;
216 $this->trans_loaded[$a_obj_id] =
true;
226 return (is_array($this->description_trans) &&
227 in_array($a_obj_id, $this->description_trans));
242 $objDefinition = $DIC[
"objDefinition"];
245 if (is_object(
$ilUser) && $a_lang ==
"") {
246 $a_lang =
$ilUser->getLanguage();
248 if (!is_array($a_obj_ids)) {
251 if (count($a_obj_ids) == 0) {
255 $query =
"SELECT object_data.*, object_description.description as long_description " .
256 "FROM object_data LEFT JOIN object_description ON object_data.obj_id = object_description.obj_id " .
257 "WHERE " .
$ilDB->in(
'object_data.obj_id', $a_obj_ids,
false,
'integer');
263 if (!$this->trans_loaded[$row->obj_id]) {
264 $this->object_data_cache[$row->obj_id][
'title'] = $row->title;
265 $this->object_data_cache[$row->obj_id][
'description'] = $row->description;
266 if ($row->long_description !== null) {
267 $this->object_data_cache[$row->obj_id][
'description'] = $row->long_description;
270 $this->object_data_cache[$row->obj_id][
'type'] = $row->type;
271 $this->object_data_cache[$row->obj_id][
'owner'] = $row->owner;
272 $this->object_data_cache[$row->obj_id][
'last_update'] = $row->last_update;
273 $this->object_data_cache[$row->obj_id][
'offline'] = $row->offline;
275 if (is_object($objDefinition)) {
276 $translation_type = $objDefinition->getTranslationType($row->type);
279 if ($translation_type ==
"db") {
280 $db_trans[$row->obj_id] = $row->obj_id;
283 if (count($db_trans) > 0) {
298 foreach ($a_obj_ids as $id) {
300 if (!$this->trans_loaded[$id]) {
302 $this->trans_loaded[$id] =
true;
305 if (count($obj_ids) > 0) {
306 $q =
"SELECT obj_id, title, description FROM object_translation " .
307 "WHERE " .
$ilDB->in(
'obj_id', $obj_ids,
false,
'integer') .
" " .
308 "AND lang_code = " .
$ilDB->quote($a_lang,
'text') .
" " .
309 "AND NOT lang_default = 1";
310 $r =
$ilDB->query($q);
312 $this->object_data_cache[$row2->obj_id][
'title'] = $row2->title;
313 $this->object_data_cache[$row2->obj_id][
'description'] = $row2->description;
314 $this->description_trans[] = $row2->obj_id;
323 if (!is_array($a_ref_ids)) {
326 if (count($a_ref_ids) == 0) {
330 $query =
"SELECT ref_id, obj_id FROM object_reference " .
331 "WHERE " .
$ilDB->in(
'ref_id', $a_ref_ids,
false,
'integer');
336 $this->reference_cache[$row[
'ref_id']] = $row[
'obj_id'];
338 $obj_ids[] = $row[
'obj_id'];
__isObjectCached($a_obj_id)
checks whether an object is aleady in cache or not
__isReferenceCached($a_ref_id)
checks whether an reference id is already in cache or not
preloadTranslations($a_obj_ids, $a_lang)
Preload translation informations.
lookupDescription($a_obj_id)
lookupLastUpdate($a_obj_id)
lookupOfflineStatus($a_obj_id)
Check if supports centralized offline handling and is offline.
preloadObjectCache($a_obj_ids, $a_lang="")
Stores object data in cache.
__storeObjectData($a_obj_id, $a_lang="")
Stores object data in cache.
deleteCachedEntry($a_obj_id)
__storeReference($a_ref_id)
Stores Reference in cache.
foreach($_POST as $key=> $value) $res
preloadReferenceCache($a_ref_ids, $a_incl_obj=true)
isTranslatedDescription($a_obj_id)