You are here

function mobile_codes_block_save in Mobile Codes 7.2

Implements hook_block_save().

File

includes/block.inc, line 57
Block module integration.

Code

function mobile_codes_block_save($delta = 0, $edit = array()) {
  if (function_exists($function = "mobile_codes_block_{$delta}_save")) {
    $function($edit);
  }
}