PhpCake2.x 中paginatorHelper options 说明:
1. PaginatorHelper::prev,next,first,last("显示Text",
array(
'tag' => 'a',//这里设置标签类型,默认是span,可以设定为‘a’
'class' => 'xxxx',//设置class,如:‘page-buttons’
),//<正常状态下属性设置
"disable 状态下的text",///可以直接设为null,即disable时不改变title
array(
'tag' =>'div',///同上
'class' => 'xxxx'.///同上,EX:“page-buttons page-buttons-disabled”
),///
2. PaginatorHelper::numbers(array(
'modulus' => 5,///<显示5个page 数字link
'tag' => 'span',///< 标签
'currentTag' => 'span' ,///< 当前页号的标签, 与tag 设为不一致时,link会出现两个,不知是哪里不对。
‘class’ => 'class1',///page 数字link 的class 属性
‘currentClass’ => 'class2',///当前page 数字link 的class 所增加的class.
'seperator' => ' ',/// page 数字link之间插入空格,不然会挤在一块
));
阅读(662) | 评论(0) | 转发(0) |