| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- // +----------------------------------------------------------------------
- // | Fanwe 方维直播系统
- // +----------------------------------------------------------------------
- // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: 云淡风轻(1956838968@qq.com)
- // +----------------------------------------------------------------------
- //会员整合的接口
- interface integrate{
- //用户登录
- /**
- * 返回 array('status'=>'',data=>'',msg=>'') msg存放整合接口返回的字符串
- * @param $user_data
- */
- function login($user_name,$user_pwd);
-
- //用户登出
- /**
- * 返回 array('status'=>'',data=>'',msg=>'') msg存放整合接口返回的字符串
- */
- function logout();
-
- //用户注册
- /**
- * 返回 array('status'=>'',data=>'',msg=>'') msg存放整合接口的消息
- * @param $user_data
- */
- function add_user($user_name,$user_pwd,$email);
-
- //用户修改密码
- /**
- * 返回bool
- * @param $user_data
- */
- function edit_user($user_data,$user_new_pwd);
-
-
- //删除会员
- function delete_user($user_data);
-
-
- //安装时执行的部份操作
- //返回 array('status'=>'','msg'=>'')
- function install($config_seralized);
-
- //卸载时执行的部份操作
- //无返回
- function uninstall();
- }
- ?>
|