Custom Backgrounds in FollowMe
Design and Skin Customization
THANK YOU!!!
<?php
add_hook('ClientLoginShare', 1, function($vars) {
// Perform custom authentication logic here
// User not found
return false;
// Login as existing WHMCS Client by Email Address
return array(
'email' => 'jr_user@my-site.com',
);
// Create a new client and login
return array(
'create' => true,
'email' => 'jr_user@my-site.com',
'companyname' => 'JR Username',
'password' => 'xxxxxxxx',
);
});