You are here

function advagg_sri_del_filename_hashes in Advanced CSS/JS Aggregation 7.2

Store settings associated with hash.

Parameters

string $filename: The name of the aggregated filename.

Return value

DeleteQuery value from db_delete

2 calls to advagg_sri_del_filename_hashes()
advagg_sri_advagg_missing_root_file in advagg_sri/advagg_sri.advagg.inc
Implements hook_advagg_missing_root_file().
advagg_sri_advagg_removed_aggregates in advagg_sri/advagg_sri.advagg.inc
Implements hook_advagg_removed_aggregates().

File

advagg_sri/advagg_sri.advagg.inc, line 162
Advanced aggregation sri module.

Code

function advagg_sri_del_filename_hashes($filename) {
  return db_delete('advagg_sri')
    ->condition('filename', $filename)
    ->execute();
}