Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 523 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 523 Bytes

Hijri Date Plugin for Magento 1.9

Working example

Showing Hijri date on alhudapublications.org welcome navigation bar

Usage

Add the following code to your theme header.phtml

$jd = Mage::getModel('core/date')->date('d');
$jm = Mage::getModel('core/date')->date('m');
$jy = Mage::getModel('core/date')->date('Y');

echo Mage::helper('hijridate/hijridate')->Greg2Hijri($jd, $jm, $jy, true);

Date calculation logic from http://www.phpsimplicity.com/tips.php?id=17