function filehash_bulk in File Hash 7
Builds the File Hash bulk generate form.
1 string reference to 'filehash_bulk'
- filehash_menu in ./
filehash.module - Implements hook_menu().
File
- ./
filehash.admin.inc, line 31 - File Hash configuration.
Code
function filehash_bulk() {
$form['explanation'] = array(
'#type' => 'item',
'#description' => t('Use this button to generate hashes for each uploaded file. Existing hashes will be left untouched.'),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Bulk generate file hashes'),
);
return $form;
}