You are here

function mobile_codes_block_configure in Mobile Codes 7.2

Implements hook_block_configure().

File

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

Code

function mobile_codes_block_configure($delta) {
  if (function_exists($function = "mobile_codes_block_{$delta}_configure")) {
    return $function();
  }
  return array();
}