分析ecshop中$user对象

2009-07-22 11:45 来源:www.chinab4c.com 作者:ecshop专家

   ecshop的程序中,有个对象,叫做$user的对象,他用来处理用户信息的。不如登陆,注册,还有就是用来和第三方管理通讯和共享资源的。

   比如user.php中,有一条$user->login($username, $password).这里的$user就是来自includes/init.php中的   $user = & init_users();而inti_user函数又在lib_common.php中,他里面有一段非常经典的代码。 

    include_once(ROOT_PATH . 'includes/modules/integrates/' . $GLOBALS['_CFG']['integrate_code'] . '.php');
    $cfg = unserialize($GLOBALS['_CFG']['integrate_config']);
    $cls = new $GLOBALS['_CFG']['integrate_code']($cfg);

   可以看的出来,调用的插件默认的是ecshop。那么这里面包含的文件应该是'includes/modules/integrates/ecshop.php',而且声明一个对象,打开ecshop.php这个文件,你会发现他继承了'includes/modules/integrates/integrate.php'.

   他里面有很多的方法:login()登陆,edit_user()编辑用户资料,add_user()注册用户.

  相关文章:

  分析ecshop后台添加产品是图片处理

 分析ecshop2.7.0整合uc

  ecshop配置邮件服务器

  使用ecshop电子商务系统的100个小问题

   来源:中国B4C电子商务