Skip to content

Instantly share code, notes, and snippets.

@thisMagpie
Created October 29, 2012 10:19
Show Gist options
  • Select an option

  • Save thisMagpie/3972777 to your computer and use it in GitHub Desktop.

Select an option

Save thisMagpie/3972777 to your computer and use it in GitHub Desktop.
removingfromLine569 on casetracker some conflict.
/**
* Implements hook_block_view().
*/
function casetracker_block_view($delta) {
switch ($delta) {
case 'case':
if (user_access('access content')) {
$block['subject'] = t('Jump to case');
$block['content'] = drupal_get_form('casetracker_block_jump_to_case_number');
}
break;
}
return $block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment