aboutsummaryrefslogtreecommitdiff
path: root/app/model
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-30 20:51:33 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-30 20:51:33 -0400
commite6ba75472a9973c488e834867c83393705480325 (patch)
tree1351d22bb60dbc96f3d3c49bfdcbd30bb922840d /app/model
parentb348e8f87431623bb398eb13d3784157a82339a3 (diff)
downloadthedroneely.com-e6ba75472a9973c488e834867c83393705480325.tar.gz
thedroneely.com-e6ba75472a9973c488e834867c83393705480325.tar.bz2
thedroneely.com-e6ba75472a9973c488e834867c83393705480325.zip
app/model/Navigation: Remove title switch function, and set title on page itself
Diffstat (limited to 'app/model')
-rw-r--r--app/model/Navigation.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/model/Navigation.php b/app/model/Navigation.php
index bfe9616..b7ca00f 100644
--- a/app/model/Navigation.php
+++ b/app/model/Navigation.php
@@ -27,18 +27,4 @@ class Navigation
}
return;
}
-
- public function title()
- {
- switch ($_SERVER['REQUEST_URI']) {
- case '/contact/':
- $uri = $_SERVER['REQUEST_URI'];
- echo $titleHeader = 'Contact - ';
- break;
- case '/':
- $uri = $_SERVER['REQUEST_URI'];
- echo $titleHeader = 'Portfolio - ';
- break;
- }
- }
}