function photos_upload_info in Album Photos 6.2
Same name and namespace in other branches
- 7.3 photos.module \photos_upload_info()
9 calls to photos_upload_info()
File
- ./
photos.module, line 976
Code
function photos_upload_info($t = 'd') {
$info = variable_get('photos_size', false);
if (is_array($info)) {
if ($t) {
usort($info, '_photos_cmp');
}
else {
usort($info, '_photos_cmpt');
}
$v['count'] = count($info);
$v['size'] = $info;
return $v;
}
return false;
}