# wt-security/2.2.1/helpers.php

WebTotem Security, version 2.2.1. 9 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.2.1/code/helpers.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.2.1/raw/helpers.php
- Modified: 2020-09-10T12:50:18+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.2.1/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 "";
}
```
