You are here

public function mylivechat::GetEncrypt in My Live Chat 6

Same name and namespace in other branches
  1. 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;
}