function aggregator_block_save in Drupal 7
Implements hook_block_save().
File
- modules/
aggregator/ aggregator.module, line 381 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Code
function aggregator_block_save($delta = '', $edit = array()) {
list($type, $id) = explode('-', $delta);
if ($type == 'category') {
db_update('aggregator_category')
->fields(array(
'block' => $edit['block'],
))
->condition('cid', $id)
->execute();
}
}