function twitter_block_block_configure in Twitter Block 7
Same name and namespace in other branches
- 7.2 twitter_block.module \twitter_block_block_configure()
Implements hook_block_configure().
File
- ./
twitter_block.module, line 121 - A module to provide simple Twitter blocks using the Twitter Search API.
Code
function twitter_block_block_configure($delta = 0) {
if ($delta) {
$twitter_block = twitter_block_block_get($delta);
}
else {
$twitter_block = array();
}
return twitter_block_custom_block_form($twitter_block);
}