国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
567B

  1. <?php if(!defined('DEDEINC')) exit("Request Error!");
  2. // 为了兼容旧版本文件,这里将函数直接封装到archive小助手中
  3. // 所以这里仅做一个文件引入映射,今后的开发,如果遇到此类函数
  4. // 在开发过程中直接使用helper('archive');即可
  5. helper('archive');
  6. function IndexSub($idx, $num) {
  7. return intval($idx - $num) == 0? '0 ' : intval($idx - $num);
  8. }
  9. // 用来返回index的active
  10. function IndexActive($idx){
  11. if ($idx == 1) {
  12. return ' active';
  13. } else {
  14. return '';
  15. }
  16. }