27 $ilDB = $DIC->database();
34 unset($this->object_data_cache[$a_obj_id]);
44 return (
int) @$this->reference_cache[$a_ref_id];
52 return @$this->object_data_cache[$a_obj_id][
'title'];
61 return @$this->object_data_cache[$a_obj_id][
'type'];
69 return @$this->object_data_cache[$a_obj_id][
'owner'];
77 return @$this->object_data_cache[$a_obj_id][
'description'];
85 return @$this->object_data_cache[$a_obj_id][
'last_update'];
98 return (
bool) $this->object_data_cache[$a_obj_id][
'offline'];
114 #static $not_cached = 0; 116 if (@$this->reference_cache[$a_ref_id]) {
117 #echo "Reference ". ++$cached ."cached<br>"; 120 #echo "Reference ". ++$not_cached ." not cached<br>"; 134 static $not_cached = 0;
137 if (@$this->object_data_cache[$a_obj_id]) {
138 #echo "Object ". ++$cached ."cached<br>"; 141 #echo "Object ". ++$not_cached ." not cached<br>"; 159 $query =
"SELECT obj_id FROM object_reference WHERE ref_id = " .
$ilDB->quote($a_ref_id,
'integer');
162 $this->reference_cache[$a_ref_id] = $row[
'obj_id'];
164 return (
int) @$this->reference_cache[$a_ref_id];
179 $objDefinition = $DIC[
"objDefinition"];
182 if (is_object(
$ilUser) && $a_lang ==
"") {
183 $a_lang =
$ilUser->getLanguage();
186 $query =
"SELECT object_data.*, object_description.description as long_description " .
187 "FROM object_data LEFT JOIN object_description ON object_data.obj_id = object_description.obj_id " .
188 "WHERE object_data.obj_id = " .
$ilDB->quote($a_obj_id,
'integer');
191 $this->object_data_cache[$a_obj_id][
'title'] = $row->title;
192 $this->object_data_cache[$a_obj_id][
'description'] = $row->description;
193 if ($row->long_description !== null) {
194 $this->object_data_cache[$a_obj_id][
'description'] = $row->long_description;
196 $this->object_data_cache[$a_obj_id][
'type'] = $row->type;
197 $this->object_data_cache[$a_obj_id][
'owner'] = $row->owner;
198 $this->object_data_cache[$a_obj_id][
'last_update'] = $row->last_update;
199 $this->object_data_cache[$a_obj_id][
'offline'] = $row->offline;
201 if (is_object($objDefinition)) {
202 $translation_type = $objDefinition->getTranslationType($row->type);
205 if ($translation_type ==
"db") {
206 if (!$this->trans_loaded[$a_obj_id]) {
207 $q =
"SELECT title,description FROM object_translation " .
208 "WHERE obj_id = " .
$ilDB->quote($a_obj_id,
'integer') .
" " .
209 "AND lang_code = " .
$ilDB->quote($a_lang,
'text');
210 $r =
$ilDB->query($q);
214 $this->object_data_cache[$a_obj_id][
'title'] = $row->title;
215 $this->object_data_cache[$a_obj_id][
'description'] = $row->description;
216 $this->description_trans[] = $a_obj_id;
218 $this->trans_loaded[$a_obj_id] =
true;
228 return (is_array($this->description_trans) &&
229 in_array($a_obj_id, $this->description_trans));
244 $objDefinition = $DIC[
"objDefinition"];
247 if (is_object(
$ilUser) && $a_lang ==
"") {
248 $a_lang =
$ilUser->getLanguage();
250 if (!is_array($a_obj_ids)) {
253 if (count($a_obj_ids) == 0) {
257 $query =
"SELECT object_data.*, object_description.description as long_description " .
258 "FROM object_data LEFT JOIN object_description ON object_data.obj_id = object_description.obj_id " .
259 "WHERE " .
$ilDB->in(
'object_data.obj_id', $a_obj_ids,
false,
'integer');
265 if (!$this->trans_loaded[$row->obj_id]) {
266 $this->object_data_cache[$row->obj_id][
'title'] = $row->title;
267 $this->object_data_cache[$row->obj_id][
'description'] = $row->description;
268 if ($row->long_description !== null) {
269 $this->object_data_cache[$row->obj_id][
'description'] = $row->long_description;
272 $this->object_data_cache[$row->obj_id][
'type'] = $row->type;
273 $this->object_data_cache[$row->obj_id][
'owner'] = $row->owner;
274 $this->object_data_cache[$row->obj_id][
'last_update'] = $row->last_update;
275 $this->object_data_cache[$row->obj_id][
'offline'] = $row->offline;
277 if (is_object($objDefinition)) {
278 $translation_type = $objDefinition->getTranslationType($row->type);
281 if ($translation_type ==
"db") {
282 $db_trans[$row->obj_id] = $row->obj_id;
285 if (count($db_trans) > 0) {
300 foreach ($a_obj_ids as $id) {
302 if (!$this->trans_loaded[$id]) {
304 $this->trans_loaded[$id] =
true;
307 if (count($obj_ids) > 0) {
308 $q =
"SELECT obj_id, title, description FROM object_translation " .
309 "WHERE " .
$ilDB->in(
'obj_id', $obj_ids,
false,
'integer') .
" " .
310 "AND lang_code = " .
$ilDB->quote($a_lang,
'text');
311 $r =
$ilDB->query($q);
313 $this->object_data_cache[$row2->obj_id][
'title'] = $row2->title;
314 $this->object_data_cache[$row2->obj_id][
'description'] = $row2->description;
315 $this->description_trans[] = $row2->obj_id;
324 if (!is_array($a_ref_ids)) {
327 if (count($a_ref_ids) == 0) {
331 $query =
"SELECT ref_id, obj_id FROM object_reference " .
332 "WHERE " .
$ilDB->in(
'ref_id', $a_ref_ids,
false,
'integer');
337 $this->reference_cache[$row[
'ref_id']] = $row[
'obj_id'];
339 $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)