aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/Functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/Functions.php')
-rw-r--r--bootstrap/Functions.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap/Functions.php b/bootstrap/Functions.php
new file mode 100644
index 0000000..52ec992
--- /dev/null
+++ b/bootstrap/Functions.php
@@ -0,0 +1,12 @@
+<?php
+
+/**
+ * Helper Functions
+ */
+
+function featherIcon($name) {
+ echo file_get_contents(
+ $_SERVER['DOCUMENT_ROOT']
+ . '/..' . '/public/css/fonts/feather-icons/' . $name . '.svg'
+ );
+}