Schedule(スケジュール)1.0.1での休日カレンダー表示について
- » hogechan > Schedule(スケジュール)1.0.1での休日カレンダー表示について @ 2018/12/1 9:25
- tommy6073 > Re: Schedule(スケジュール)1.0.1での休日カレンダー表示について @ 2018/12/3 10:48
- hogechan > Re: Schedule(スケジュール)1.0.1での休日カレンダー表示について @ 2018/12/3 13:20
hogechan > Schedule(スケジュール)1.0.1での休日カレンダー表示について @ 2018/12/1 9:25 |
---|
WEBデザイン初心者です。
baserCMS 3.0.9、ratio_3_2(バージョン:1.3.0)上でSchedule(スケジュール)1.0.1プラグインを使い、 ウィジェットエリアに休日カレンダーを表示しているのですが、当月、翌月と2ヵ月分のカレンダーを表示した場合、 年をまたぐと翌年1月の休日が反映されません。 (年末年始の休みを表示したい。) /app/Plugin/Schedule/View/Elements/widgets内のholiday_calendar.phpで、以下のように表記しています。 echo '<'; echo date('Y-m'); echo '月の営業日>'; $this->BcBaser->holidayCalendar(null, null, array('title' => true, 'class' => 'widgetScheduleCalendar', 'business_day' => '○', 'holiday' => '休')); echo '<'; echo date('Y-m', strtotime(date('Y-m').'+1 month')); echo '月の営業日>'; $this->BcBaser->holidayCalendar(null, date('n')+1, array('title' => true, 'class' => 'widgetScheduleCalendar', 'business_day' => '○', 'holiday' => '休')); ?> なお、カレンダー自体は正常に表示されますし、基本設定で指定した休日(定休日)は表示されます。 ご教授いただきますよう、宜しくお願い致します。 |