Created
March 29, 2012 20:53
-
-
Save evolvingweb/2243687 to your computer and use it in GitHub Desktop.
hook_block_info()
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_info() | |
* | |
* Adds a custom block | |
*/ | |
function mymodule_block_info() { | |
$blocks['ad'] = array( | |
'info' => t('Advertisement'), | |
// DRUPAL_CACHE_PER_ROLE assumed | |
); | |
return $blocks; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment