博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ecshop设置一个子类对应多个父类并指定跳转url的修改方法
阅读量:6264 次
发布时间:2019-06-22

本文共 3854 字,大约阅读时间需要 12 分钟。

  这是一篇记录在日记里面的技术文档,其实是对ecshop的二次开发。主要作用是将一个子类对应多个父类,并指定条跳转url的功能。ecshop是一款在线购物网站,感兴趣的可以下载源码看看。我们看看具体是怎么修改的。

  1、数据库表“表前缀_category”添加如下字段

alter  TABLE `ga_category` add `assign_child` varchar(255) default NULL;alter  TABLE `ga_category` add `jump_url` varchar(255) default NULL;

  2、includes/lib_goods.php

  get_categories_tree、get_child_tree函数中的

$cat_arr[$row['cat_id']]['url'] = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);

  改为

if(isset($row['jump_url']) != NULL && trim($row['jump_url']) != ''){                    $cat_arr[$row['cat_id']]['url'] = $row['jump_url'];                }else{                    $cat_arr[$row['cat_id']]['url'] = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);                }

  将

$three_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);

  改为

if(isset($row['assign_child']) != NULL && trim($row['assign_child']) != ''){                        $three_arr[$row['cat_id']]['cat_id'] = get_assign_child_tree($row['assign_child']);                    }else{                           $three_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);                    }

  将将获取子类的sql

$sql = 'SELECT cat_id,cat_name ,parent_id,is_show ' .                'FROM ' . $GLOBALS['ecs']->table('category') .                "WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";

  改为(添加assign_child, jump_url两个字段用于查询用)

$sql = 'SELECT cat_id,cat_name ,parent_id,is_show, template_file, assign_child, jump_url ' .                'FROM ' . $GLOBALS['ecs']->table('category') .                "WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";

  并添加函数

function get_assign_child_tree($tree_id = ''){    $three_arr = array();    if($tree_id == '') return $three_arr;    $child_sql = 'SELECT cat_id, cat_name, parent_id, is_show, assign_child, jump_url ' .            'FROM ' . $GLOBALS['ecs']->table('category') .            "WHERE cat_id in( $tree_id ) AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";    $res = $GLOBALS['db']->getAll($child_sql);    foreach ($res AS $row)    {        if ($row['is_show'])           $three_arr[$row['cat_id']]['id']   = $row['cat_id'];           $three_arr[$row['cat_id']]['name'] = $row['cat_name'];            if(isset($row['jump_url']) != NULL && trim($row['jump_url']) != ''){                $three_arr[$row['cat_id']]['url'] = $row['jump_url'];            }else{                   $three_arr[$row['cat_id']]['url']  = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);            }           if (isset($row['cat_id']) != NULL)               {                    if(isset($row['assign_child']) != NULL && trim($row['assign_child']) != ''){                        $three_arr[$row['cat_id']]['cat_id'] = get_assign_child_tree($row['assign_child']);                    }else{                           $three_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);                    }        }    }    return $three_arr;}

  3、admin/category.php中作如下修改

  在($_REQUEST['act'] == 'insert')、if ($_REQUEST['act'] == 'update')的条件中的

$cat['grade'] = !empty($_POST['grade']) ? intval($_POST['grade']) : 0;$cat['filter_attr'] = !empty($_POST['filter_attr']) ? implode(',', array_unique(array_diff($_POST['filter_attr'],array(0)))) : 0;

  后面添加

$cat['jump_url']     = !empty($_POST['jump_url'])     ? trim($_POST['jump_url'])      : '';    $cat['assign_child'] = !empty($_POST['assign_child']) ? trim($_POST['assign_child']) : '';

  4、在admin/templates/category_info.htm的

        {$lang.assign_child}:                                

  中添加

        {$lang.jump_url}:                                

  5、languages/zh-cn/admin/category.php中添加如下语言描述

  $_LANG['jump_url']='跳转url(指定跳转至的url)';

  $_LANG['assign_child']='指定子类(将其id填写在输入框中即可,多个是用应为的“,”号隔开)';

 

转载地址:http://prkpa.baihongyu.com/

你可能感兴趣的文章
案例分析:基于消息的分布式架构
查看>>
简单两步走 中兴V880获取权限方法
查看>>
外部 BLOB 存储体系结构
查看>>
导入文本文件时如何指定字段类型.sql
查看>>
C# 对象二进制序列化
查看>>
收藏的几个好的网站
查看>>
linux中shell变量$#,$@,$*,$?,$0,$1,$2的含义解释
查看>>
前端精选文摘:那些年我们一起清除过的浮动
查看>>
实现一种快速查找Richedit中可见区域内OLE对象的方法
查看>>
Java虚拟机工作原理详解 ( 二 )
查看>>
对象的序列化(Serialization)
查看>>
理解 Glance - 每天5分钟玩转 OpenStack(20)
查看>>
编译pure-ftpd时提示错误Your MySQL client libraries aren't properly installed
查看>>
Impala SQL
查看>>
STL源代码分析--萃取编程(traits)技术的实现
查看>>
Linux ALSA声卡驱动之一:ALSA架构简介【转】
查看>>
为了解决linux配置Nginx 只能关闭防火墙才能访问的问题
查看>>
CentOS7.2 创建本地YUM源和局域网YUM源
查看>>
ubuntu设置root密码及 Xftp连接linux(ubuntu)时提示ssh服务器拒绝了密码,请再试一次...
查看>>
[转]WCF RIA Services
查看>>