如何显示上一个和下一个而不是"<<"和">>" codeigniter日历库

时间:2017-11-15 07:18:54

标签: codeigniter

我想显示我的日历页面,上个月和下个月的链接是PREVIOUS和NEXT标题,而不是<<和>>。

1 个答案:

答案 0 :(得分:0)

我找到了关于此的答案,

$prefs = array("template" => array(
         'heading_previous_cell' => '<th><a href="{previous_url}">Previous</a></th>',
         'heading_next_cell' => '<th><a href="{next_url}">Next</a></th>',
    )
);

$this->load->library('calendar', $prefs);

$this->calendar->generate($this->uri->segment(3), $this->uri->segment(4));