*/ $entries = $this->entries; $amount = $this->amount; $vat = $this->vat; $vatRate = $this->vatRate; $total = $this->total; $projects = $this->projects; $customer = $this->customer; $invoiceId = $this->invoiceId; $currency = $this->currencySign; $dateFormat = $this->dateFormat; $beginDate = $this->beginDate; $endDate = $this->endDate; $invoiceDate = $this->invoiceDate; $sumHours = 0; // calculate total hours foreach($entries as $row) { $sumHours += $row['hour']; } $kga = Kimai_Registry::getConfig(); $months = $kga['lang']['months']; $monthIndex = (int)date('n', $beginDate)-1; $year = date('Y', $beginDate); $translations = [ 'title' => 'Projektbericht', 'date' => 'Datum', 'activity' => 'Tätigkeit', 'total' => 'Summe', 'hours' => 'Stunden', 'month' => 'Monat', 'customer' => 'Kunde', 'freelancer' => 'Berater', 'contact' => 'Abteilung', 'footer-freelancer' => 'Leistungsbestätigung - Name Berater / Unterschrift', 'footer-customer' => 'Leistungsbestätigung - Name Kunde / Unterschrift', ]; ?> <?php echo htmlspecialchars($translations['title']); ?>

-