You are here

function _photos_down_label in Album Photos 7.3

Same name and namespace in other branches
  1. 6.2 inc/photos.down.inc \_photos_down_label()

Download label.

1 call to _photos_down_label()
photos_down_page in inc/photos.down.inc
Photos download (share) page.

File

inc/photos.down.inc, line 134
Handles share image page(s) and content.

Code

function _photos_down_label($label) {
  $t = photos_upload_info();
  foreach ($t['size'] as $v) {
    if ($v['name'] == $label) {
      return $label;
    }
  }
}