Spróbowałem użyć tego modułu i nie rozumiem tego warunku bo nawet jak oryginalny plik ganalytics/ganalytics.php będzie istniał to moduł będzie dawał komunikat że go się nie ma zainstalowanego, to tak powinno być ?
Is that condition correct ? if file exists or no - it's always showing message that does not exists, a bit confusing.
if (file_exists($filename)) {
echo $this->module->l('The file ') . $filename. $this->module->l(' does not exist. You do not have installed a Google Analytics module.');
} else {
echo $this->module->l('The file ') . $filename. $this->module->l(' does not exist. You do not have installed a Google Analytics module.');
exit;
}