public static function deleteClangFile($websiteId)
 {
     global $REX;
     $clangFile = WEBSITE_MANAGER_GENERATED_DIR . rex_website::constructClangFile($websiteId);
     if (file_exists($clangFile)) {
         unlink($clangFile);
     }
 }