function hijri_shamsi_month_names in Hijri 7
Retrive Hijri Shamsi months names.
Https://en.wikipedia.org/wiki/Solar_Hijri_calendar#Month_names.
1 call to hijri_shamsi_month_names()
- hijri in ./
hijri.module - Retrive Hijri date from given format and timestamp.
File
- ./
hijri.module, line 551 - This module convert to Hijri date in nodes,comments and a block.
Code
function hijri_shamsi_month_names() {
// This Arabic names should written in English with t() function.
return array(
'1' => t('Hamal'),
'2' => t('Sawr'),
'3' => t('Jawzā'),
'4' => t('Saratān'),
'5' => t('Asad'),
'6' => t('Sonbola'),
'7' => t('Mizān'),
'8' => t('‘Aqrab'),
'9' => t('Qaws'),
'10' => t('Jadi'),
'11' => t('Dalvæ'),
'12' => t('Hūt'),
);
}