Skip to content

Instantly share code, notes, and snippets.

@dergachev
Created February 2, 2012 17:18
Show Gist options
  • Save dergachev/1724660 to your computer and use it in GitHub Desktop.
Save dergachev/1724660 to your computer and use it in GitHub Desktop.
<?php
function hook_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