You are here

function filefield_nginx_progress_update_7100 in FileField Nginx Progress 7.2

Same name and namespace in other branches
  1. 7 filefield_nginx_progress.install \filefield_nginx_progress_update_7100()

Set the upload progress in the status report page.

File

./filefield_nginx_progress.install, line 66
filefield_nginx_progress.install

Code

function filefield_nginx_progress_update_7100() {
  db_update('system')
    ->fields(array(
    'weight' => 20,
  ))
    ->condition('type', 'module')
    ->condition('name', 'filefield_nginx_progress')
    ->execute();
}