public function mylivechat::GetEncrypt in My Live Chat 6
Same name and namespace in other branches
- 7 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;
}