Created
March 29, 2012 23:35
-
-
Save evolvingweb/2244929 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
/* | |
* Implements hook_block_view(). | |
* | |
* Displays an ad block. | |
*/ | |
function mymodule_block_view($delta = '') { | |
$block = array(); | |
switch ($delta) { | |
case 'ad': | |
$block['subject'] = t('This is an Ad'); | |
$block['content'] = t('Buy My Module!'), | |
break; | |
return $block; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment