Skip to content

Instantly share code, notes, and snippets.

@dergachev
Created February 2, 2012 17:16
Show Gist options
  • Save dergachev/1724651 to your computer and use it in GitHub Desktop.
Save dergachev/1724651 to your computer and use it in GitHub Desktop.
<?php
/*
* Implements hook_block_info()
*
* Adds a custom block
*/
function mymodule_block_info() {
$blocks['ad'] = array(
'info' => t('Advertisement'),
);
return $blocks;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment