要实现如果是匿名用户点击checkout链接,要求先登录
方案一、通过添加Rules规则实现
EVENT:After adding a product to the cart
Conditions :User has role(s) 只选 匿名用户
Action动作:Page redirect ,参数Parameter 网址填注册地址就行了 如: /user/register
好处:实现容易
坏处:其实并没有真正的满足需求,我们要做的是点击checkout链接时判断。
方案二、自己写模块实现
在sites\all\modules\custom目录下新建一目录,命名为goto
然后再里面新建两个文件
goto.info 这是模块信息文件
; $Id$
name = Goto
description = goto frontpage dispaly
core = 7.x
version = VERSION
package = Goto files[] = goto.module
goto.module 这是实现代码
首先user_is_logged_in()函数判断用户是否登录
如果没有登录在判断路径是否cart,如果是则跳转到user页面,在本项目中就是注册页面。
<?php
function goto_init(){
if(!user_is_logged_in()){ if(arg(0) == 'cart'){
//if(arg(0)=='dev' and arg(1)=='cart'){
//drupal_goto('user/register');
drupal_goto('user');
}
}
}
?>