You are here

function advagg_get_global_counter in Advanced CSS/JS Aggregation 7.2

Same name and namespace in other branches
  1. 8.2 advagg.module \advagg_get_global_counter()

Return the advagg_global_counter variable.

Return value

int Int value.

5 calls to advagg_get_global_counter()
advagg_admin_operations_form in ./advagg.admin.inc
Form builder; Do advagg operations.
advagg_current_hooks_hash_array in ./advagg.module
Get an array of all hooks and settings that affect aggregated files contents.
advagg_drush_help in ./advagg.drush.inc
Implements hook_drush_help().
advagg_increment_global_counter in ./advagg.cache.inc
Increment the advagg_global_counter variable by one.
advagg_mod_init in advagg_mod/advagg_mod.module
Implements hook_init().

File

./advagg.module, line 3963
Advanced CSS/JS aggregation module.

Code

function advagg_get_global_counter() {
  $global_counter = variable_get('advagg_global_counter', ADVAGG_GLOBAL_COUNTER);
  return $global_counter;
}