如果用戶不存在,則作為客戶端登錄的一部分執行。
參數
| 變量 | 類型 | 注意 |
|---|---|---|
| username | string | |
| password | string |
響應
返回數據以創建用戶或引用要登錄的現有客戶端。現有用戶的 ID、電子郵件、布爾創建以創建新用戶、名字、姓氏等以創建客戶端。
示例代碼
<?php
add_hook('ClientLoginShare', 1, function($vars) {
// Perform custom authentication logic here
// There are 4 supported return values, each demonstrated below.
// User not found
return false;
// Login as existing WHMCS Client ID
return array(
'id' => '123',
);
// Login as existing WHMCS Client by Email Address
return array(
'email' => '[email protected]',
);
// Create a new client and login
return array(
'create' => true,
'email' => '[email protected]',
'firstname' => 'Demo',
'lastname' => 'User',
'companyname' => 'Demo Company',
'address1' => '123 Demo Street',
'address2' => '',
'city' => 'Demo',
'state' => 'Demo',
'postcode' => '12345',
'country' => 'US',
'phonenumber' => '11111111111',
'password' => 'xxxxxxxx',
);
});
相關用法
- PHP WHMCS ClientAreaPageDownloads用法及代碼示例
- PHP WHMCS ClientAreaHeaderOutput用法及代碼示例
- PHP WHMCS ClientAreaPageSupportTickets用法及代碼示例
- PHP WHMCS ClientAreaPageDomainDNSManagement用法及代碼示例
- PHP WHMCS ClientAreaPageAffiliates用法及代碼示例
- PHP WHMCS ClientAreaPageViewInvoice用法及代碼示例
- PHP WHMCS ClientAreaPageProductsServices用法及代碼示例
- PHP WHMCS ClientAreaPageDomainRegisterNameservers用法及代碼示例
- PHP WHMCS ClientAreaPageUnsubscribe用法及代碼示例
- PHP WHMCS ClientAreaPageConfigureSSL用法及代碼示例
- PHP WHMCS ClientAreaPageDomainDetails用法及代碼示例
- PHP WHMCS ClientAreaPageAddonModule用法及代碼示例
- PHP WHMCS ClientAreaPageContact用法及代碼示例
- PHP WHMCS ClientAreaPageSecurity用法及代碼示例
- PHP WHMCS ClientAreaPage用法及代碼示例
- PHP WHMCS ClientChangePassword用法及代碼示例
- PHP WHMCS ClientAreaProductDetailsOutput用法及代碼示例
- PHP WHMCS ClientAreaDomainDetailsOutput用法及代碼示例
- PHP WHMCS ClientAreaPageDomainEmailForwarding用法及代碼示例
- PHP WHMCS ClientAreaPageDomainAddons用法及代碼示例
- PHP WHMCS ClientAreaPageAddFunds用法及代碼示例
- PHP WHMCS ClientAreaPageBulkDomainManagement用法及代碼示例
- PHP WHMCS ClientAreaRegister用法及代碼示例
- PHP WHMCS ClientAreaPaymentMethods用法及代碼示例
- PHP WHMCS ClientAreaPageViewWHOIS用法及代碼示例
注:本文由純淨天空篩選整理自whmcs.com大神的英文原創作品 ClientLoginShare。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
