# wt-security/2.2.3/helpers.php

WebTotem Security, version 2.2.3. 9 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.2.3/code/helpers.php
- Raw: https://pluginprobe.com/plugins/wt-security/2.2.3/raw/helpers.php
- Modified: 2020-11-27T08:50:22+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.3/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 "";
}
```
