You are here

function photos_upload_info in Album Photos 7.3

Same name and namespace in other branches
  1. 6.2 photos.module \photos_upload_info()

Storage process information.

9 calls to photos_upload_info()
photos_admin_settings in inc/photos.admin.inc
@file Admin settings form(s) and submit handler.
photos_down_page in inc/photos.down.inc
Photos download (share) page.
photos_get_info in ./photos.module
Get photo informaiton.
_photos_down_label in inc/photos.down.inc
Download label.
_photos_filter_process in ./photos.module
Expands on photos filter process.

... See full list

File

./photos.module, line 1595
Implementation of photos.module.

Code

function photos_upload_info($t = 'd') {
  $info = variable_get('photos_size', FALSE);
  if (is_array($info)) {
    $v['count'] = count($info);
    $v['size'] = $info;
    return $v;
  }
  return FALSE;
}