function aggregator_block_save
Implements hook_block_save().
Archivo
- drupal-7.x/
modules/ aggregator/ aggregator.module, line 381 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Código
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();
}
}