You are here

public function mylivechat::tracking_code_installed in My Live Chat 6

Same name and namespace in other branches
  1. 7 mylivechat.php \MyLiveChat::tracking_code_installed()

Checks if MyLiveChat tracking code is installed properly

File

./mylivechat.php, line 91
MyLiveChat module for Drupal

Class

mylivechat
@file MyLiveChat module for Drupal

Code

public function tracking_code_installed() {
  if ($this
    ->is_installed() == FALSE) {
    return FALSE;
  }
  return TRUE;
}