# simpleanalytics/1.87/helpers.php

Simple Analytics, version 1.87. 13 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.87/code/helpers.php
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.87/raw/helpers.php
- Modified: 2024-09-13T11:41:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/simpleanalytics/1.87/code/helpers.php#L10-L20`.

```php
<?php

namespace SimpleAnalytics;

use SimpleAnalytics\Support\SvgIcon;

defined('\\ABSPATH') || exit;

function get_icon(string $name): SvgIcon
{
    return new SvgIcon((file_get_contents(PLUGIN_PATH . "resources/icons/$name.svg")));
}

```
