function spaces_block in Spaces 5
Same name and namespace in other branches
- 5.2 spaces.module \spaces_block()
- 6.3 spaces.module \spaces_block()
- 6 spaces.module \spaces_block()
Implementation of hook_block()
File
- ./
spaces.module, line 151
Code
function spaces_block($op = 'list', $delta = 0) {
if ($op == 'list') {
$blocks[1]['info'] = t('Spaces: Contextual Tools');
$blocks[2]['info'] = t('Spaces: Navigation');
return $blocks;
}
else {
if ($op == 'view') {
switch ($delta) {
case 1:
return _spaces_block_tools();
case 2:
return _spaces_block_nav();
}
}
}
}