# wt-security/2.1.8/helpers.php

WebTotem Security, version 2.1.8. 9 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.1.8/code/helpers.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.1.8/raw/helpers.php
- Modified: 2020-08-04T11:33:58+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/wt-security/2.1.8/code/helpers.php#L10-L20`.

```php
<?php
defined('ABSPATH') or die("Protected By WT!");

function wtsec_isActivePage($page){
    if(wtsec_request()->page === WTSEC_PAGE_PREFIX.$page){
        return "wtotem_nav__link_active";
    }
    return "";
}
```
