You are here

function advagg_missing_js in Advanced CSS/JS Aggregation 6

Same name and namespace in other branches
  1. 7 includes/missing.inc \advagg_missing_js()

Menu Callback; regenerates a missing js file.

1 string reference to 'advagg_missing_js'
advagg_menu in ./advagg.module
Implementation of hook_menu().

File

./advagg.missing.inc, line 25
Advanced aggregation module; 404 handler.

Code

function advagg_missing_js() {
  ignore_user_abort();

  // Try to regenerate missing file
  $msg = advagg_missing_regenerate();

  // If here send out fast 404.
  advagg_missing_fast404($msg);
}