From 21455bfd1004c4a3153050ac5995b8dc680c2042 Mon Sep 17 00:00:00 2001
From: Camil Staps
Date: Wed, 27 Jul 2016 16:48:53 +0200
Subject: Class names start with a capital
---
nav.php | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
(limited to 'nav.php')
diff --git a/nav.php b/nav.php
index c671838..d1add16 100644
--- a/nav.php
+++ b/nav.php
@@ -27,14 +27,14 @@
- =constants::my_name?>
+ =Constants::my_name?>
- Logged in as =$_user->getUsername()?>
- (logout)
+ Logged in as =$_user->getUsername()?>
+ (logout)
-
@@ -59,13 +59,13 @@
'id' => $offer->getId(),
'contactClientName' => $offer->getContact()->getClient()->name,
'percentage' => $percentage,
- 'price' => constants::invoice_valuta . $offer->calculate(offer::SUBTOTAL)
+ 'price' => Constants::invoice_valuta . $offer->calculate(offer::SUBTOTAL)
);
}
krsort($list, SORT_STRING);
foreach ($list as $item) {
echo "
-
-
+
{$item['contactClientName']} ({$item['start']} - {$item['end']}; {$item['price']})
@@ -82,7 +82,7 @@
}
?>
-
-
+
See All Offers
@@ -98,28 +98,28 @@