CI日历类原始

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CI日历类原始相关的知识,希望对你有一定的参考价值。

The orignial calendar class code before the changes
  1. if (isset($data[$day]))
  2. {
  3. // Cells with content
  4. $temp = ($is_current_month === TRUE AND $day == $cur_day) ?
  5. $this->temp['cal_cell_content_today'] : $this->temp['cal_cell_content'];
  6. foreach($data[$day] as $content) {
  7. $out .= str_replace(array('{link}','{link_text}', '{day}'),
  8. array($content['link'], $content['link_text'], $day), $temp);
  9. }
  10. }
  11. else
  12. {
  13. // Cells with no content
  14. $temp = ($is_current_month === TRUE AND $day == $cur_day) ?
  15. $this->temp['cal_cell_no_content_today'] : $this->temp['cal_cell_no_content'];
  16. $out .= str_replace('{day}', $day, $temp);
  17. }

以上是关于CI日历类原始的主要内容,如果未能解决你的问题,请参考以下文章

CI日历类初始化完成

CI日历类初始化

CI日历模板

为啥我不能从 FragmentPagerAdapter 分离片段?

java题目,日历类,求助。

Codeigniter 助手重复 HTML 代码片段