แหล่งที่มา http:custom.simplemachines.org/mods/index.php?mod=892
/Sources/Subs.php
ค้นหา
$high_date = strftime('%Y-%m-%d', forum_time(false) + $modSettings['cal_days_for_index'] * 24 * 3600);
ใส่หลังที่ค้นหา
// Prevent errors from occurring.
if(empty($modSettings['cal_bdays_for_index']))
$modSettings['cal_bdays_for_index'] = 7;
ค้นหา
$bday = calendarBirthdayArray($low_date, $high_date);
วางทับที่ค้นหา
$bday = calendarBirthdayArray($low_date, strftime('%Y-%m-%d', forum_time(false) + $modSettings['cal_bdays_for_index'] * 24 * 3600));
/Themes/default/ManageCalendar.template.php
ค้นหา
</tr><tr class="windowbg2">
<td align="right">', $txt['setting_cal_days_for_index'], ':</td>
<td><input type="text" name="cal_days_for_index" value="', $modSettings['cal_days_for_index'], '" size="40" /></td>
ใส่หลังที่ค้นหา
</tr><tr class="windowbg2">
<td align="right">', $txt['setting_cal_bdays_for_index'], ':</td>
<td><input type="text" name="cal_bdays_for_index" value="', (!empty($modSettings['cal_bdays_for_index']) ? $modSettings['cal_bdays_for_index'] : 7) , '" size="40" /></td>
/Themes/default/languages/Modifications.english.php
ค้นหา
?>
วางก่อนที่ค้นหา
$txt['setting_cal_bdays_for_index'] = 'Days in advance to show birthdays';
/Themes/default/languages/Modifications.thai.php
ค้นหา
?>
วางก่อนที่ค้นหา
$txt['setting_cal_bdays_for_index'] = 'แสดงวันเกิดล่วงหน้า';