blob: 20fd33144e8b480974d2094f28f937777581d40b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Populate image lists for current photo albums
*/
$album_subtype_id = get_subtype_id('object', 'album');
global $DB_QUERY_CACHE, $DB_PROFILE, $ENTITY_CACHE, $CONFIG;
$album_guids = mysql_query("SELECT guid FROM {$CONFIG->dbprefix}entities WHERE subtype = $album_subtype_id");
while ($guid_obj = mysql_fetch_object($album_guids)) {
$DB_QUERY_CACHE = $DB_PROFILE = $ENTITY_CACHE = array();
$album = get_entity($guid_obj->guid);
$images = get_entities("object", "image", $album->guid, '', 9999);
$image_list = array();
foreach ($images as $image) {
$image_list[] = $image->guid;
}
$album->prependImageList($image_list);
}
|