Created
October 29, 2012 10:19
-
-
Save thisMagpie/3972777 to your computer and use it in GitHub Desktop.
removingfromLine569 on casetracker some conflict.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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