我想显示我的日历页面,上个月和下个月的链接是PREVIOUS和NEXT标题,而不是<<和>>。
答案 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));