public function MyLiveChat::tracking_code_installed in My Live Chat 7
Same name and namespace in other branches
- 6 mylivechat.php \mylivechat::tracking_code_installed()
Checks if MyLiveChat tracking code is installed properly
File
- ./
mylivechat.php, line 86 - 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;
}