You are here

function hijri_block_info in Hijri 8

Same name and namespace in other branches
  1. 7 hijri.module \hijri_block_info()

Implements hook_block_info().

File

./_hijri.module, line 6

Code

function hijri_block_info() {

  // This example comes from node.module.
  $blocks['hijri'] = array(
    'info' => t('Hijri Date Block'),
  );
  return $blocks;
}