You are here

function hijri_block_info in Hijri 7

Same name and namespace in other branches
  1. 8 _hijri.module \hijri_block_info()

Implements hook_block_info().

File

./hijri.module, line 21
This module convert to Hijri date in nodes,comments and a block.

Code

function hijri_block_info() {

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