function datex_date_help in Datex 7
Implements hook_help().
File
- datex_date/
datex_date.module, line 11 - Provides Jalali support for date module.
Code
function datex_date_help($path, $arg) {
if ($path == 'admin/help#datex_date') {
$output = '<p>';
$output .= t('By enabling Datex Date, Gregorian dates generates by');
$output .= t('<em> Date module </em>');
$output .= t('will be displayed in Jalali format.');
$output .= '<br/>';
$output .= t('When storing date fields, they will be converted back to Gregorian format');
$output .= t('to prevent problems caused by databases not supporting dates other than Gregorian,');
$output .= '</p><p>';
$output .= t('Please be noted that Datex Date will not change display of dates when UI language is not Persian.');
$output .= '</p>';
return $output;
}
}