Skip to content

Instantly share code, notes, and snippets.

@evolvingweb
Created March 29, 2012 23:35
Show Gist options
  • Save evolvingweb/2244929 to your computer and use it in GitHub Desktop.
Save evolvingweb/2244929 to your computer and use it in GitHub Desktop.
<?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