Skip to content

Instantly share code, notes, and snippets.

@naquad
Created June 18, 2014 17:57
Show Gist options
  • Save naquad/c1e43b5808eabb18d957 to your computer and use it in GitHub Desktop.
Save naquad/c1e43b5808eabb18d957 to your computer and use it in GitHub Desktop.
function cla_block_view($delta = '')
{
$block = array();
switch ($delta) {
case 'cla':
$block['subject'] = t('Custom login actions');
$block['contents'] = array(
'#type' => 'markup',
'#markup' => 'asd'
);
break;
}
return $block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment