aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/Functions.php
blob: 52ec9925e935d75a8672dcd13cf9c5af01d363c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

/**
 * Helper Functions
 */

function featherIcon($name) {
  echo file_get_contents(
    $_SERVER['DOCUMENT_ROOT']
    . '/..' . '/public/css/fonts/feather-icons/' . $name . '.svg'
  );
}