Save the configuration options from hook_block_configure().

This hook allows you to save the block-specific configuration settings defined within your hook_block_configure().

Parameters

$delta: Which block is being configured. This is a unique identifier for the block within the module, defined in hook_block_info().

$edit: The submitted form data from the configuration form.

For a detailed usage example, see block_example.module.

See also

hook_block_configure()

hook_block_info()

Related topics

11 functions implement hook_block_save()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

aggregator_block_save in modules/aggregator/aggregator.module
Implements hook_block_save().
block_block_save in modules/block/block.module
Implements hook_block_save().
block_custom_block_save in modules/block/block.module
Saves a user-created block in the database.
blog_block_save in modules/blog/blog.module
Implements hook_block_save().
book_block_save in modules/book/book.module
Implements hook_block_save().

... See full list

1 invocation of hook_block_save()
StatisticsReportsTestCase::testPopularContentBlock in modules/statistics/statistics.test
Tests the "popular content" block.

File

modules/block/block.api.php, line 188
Hooks provided by the Block module.

Code

function hook_block_save($delta = '', $edit = array()) {

  // This example comes from node.module.
  if ($delta == 'recent') {
    variable_set('node_recent_block_count', $edit['node_recent_block_count']);
  }
}