You are here

function scald_file_scald_add_atom_count in Scald File Provider 7

Implements hook_scald_add_atom_count().

File

./scald_file.module, line 62
Scald File is a Scald Atom Provider for Files.

Code

function scald_file_scald_add_atom_count(&$form, &$form_state) {
  if (is_array($form_state['values']['file'])) {
    return max(count($form_state['values']['file']), 1);
  }
  return 1;
}