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