public function MyLiveChat::GetEncrypt in My Live Chat 7
Same name and namespace in other branches
- 6 mylivechat.php \mylivechat::GetEncrypt()
1 call to MyLiveChat::GetEncrypt()
- MyLiveChat::getChatCode in ./
mylivechat.php - Returns MyLiveChat button HTML code
File
- ./
mylivechat.php, line 184 - MyLiveChat module for Drupal
Class
- MyLiveChat
- @file MyLiveChat module for Drupal
Code
public function GetEncrypt($data, $encrymode, $encrykey) {
if ($encrymode == "basic") {
return $this
->BasicEncrypt($data, $encrykey);
}
return $data;
}