You are here

function filefield_nginx_progress_update_7100 in FileField Nginx Progress 7

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

Set the upload progress in the status report page.

File

./filefield_nginx_progress.install, line 69
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();
}