|
发表于 2012-5-28 14:00:37
|
显示全部楼层
$prefs = array (
'show_next_prev' => true,
'next_prev_url' => '/welcome/index'
);
$this->load->library('calendar',$prefs);
$data = array(
3 => 'http://example.com/news/article/2006/03/',
7 => 'http://example.com/news/article/2006/07/',
13 => 'http://example.com/news/article/2006/13/',
26 => 'http://example.com/news/article/2006/26/'
);
);
echo $this->calendar->generate($this->uri->segment(3), $this->uri->segment(4), $data); |
|