You are here

function ddblock_get_configuration_settings in Dynamic display block 7

Same name and namespace in other branches
  1. 6 ddblock.module \ddblock_get_configuration_settings()

Get the configuration settings of a block.

Parameters

$origin: Origin of the block.

$delta: Blocknumber of the block.

Return value

An associative array containing the configuration settings of the block.

File

./ddblock.module, line 2091
Enables your site to display dynamic content in a block.

Code

function ddblock_get_configuration_settings($origin, $delta) {
  return new ddblockConfigurationSettings(variable_get('ddblock_block_' . $origin . "_" . $delta . '_settings', array()));
}