You are here

function locationmap_block_save in Location Map 7

Same name and namespace in other branches
  1. 8.2 locationmap.module \locationmap_block_save()
  2. 7.2 locationmap.module \locationmap_block_save()

Implements hook_block_save().

File

./locationmap.module, line 380

Code

function locationmap_block_save($delta, $edit) {
  switch ($delta) {
    case 'image':
      variable_set('locationmap_block_mapheight', (int) $edit['locationmap_block_mapheight']);
      variable_set('locationmap_block_mapwidth', (int) $edit['locationmap_block_mapwidth']);
      variable_set('locationmap_block_text_top', $edit['locationmap_text_top']['value']);
      break;
  }
}