mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
19 lines
427 B
PHP
19 lines
427 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface pam_interface_passport{
|
||
|
||
function get_name();
|
||
function get_login_form($auth,$appid,$view,$ext_pagedata=array());
|
||
function login($auth,&$usrdata);
|
||
function loginout($auth,$backurl="index.php");
|
||
function get_data();
|
||
function get_id();
|
||
function get_expired();
|
||
|
||
}
|