/**
* 默认分页样式
*
* @return string
*/
public function get_default_style(){
$style = '<style type="text/css">';
$style .= ' div.page_list { margin:0;padding:0;overflow:hidden;zoom:1;}';
$style .= ' div.page_list a {display:block;float:left;height:20px;line-height:21px; font-size:13px;font-weight:normal;font-style:normal;color:#133DB6;text-decoration:none;margin:0 3px;padding:0 7px;overflow;zoom:1;}';
$style .= ' div.page_list a.page_list_act { font-size:13px;padding:0 6px;}';
$style .= ' div.page_list a:link, div.page_list a:visited { background:#FFF;border:1px #EEE solid;text-decoration:none;}';
$style .= ' div.page_list a:hover, div.page_list a:active { background:#EEE;text-decoration:none;}';
$style .= ' div.page_list strong { display:block;float:left;height:20px;line-height:21px;font-size:13px;font-weight:bold;font-style:normal;color:#000;margin:0 3px;padding:0 8px;overflow:hidden;zoom:1;}';
$style .= ' </style>';
return $style;
}
/**
* 是否是第一页
*
* @return bool
*/
public function is_first_page(){
return $this->page == 1;
}
/**
* 获取第一页页码
*
* @return int
*/
public function get_first_page(){
return 1;
}
/**
* 是否是最后一页
*
* @return bool
*/
public function is_last_page(){
return $this->page == $this->page_total;
}
/**
* 获取最后一页页码
*
* @return int
*/
public function get_last_page(){
return $this->page_total;
}
/**
* 是否存在上一页
*
* @return bool
*/
public function has_prev_page(){
return $this->page > 1;
}