# phastpress/1.75/classes/PhastUserImplementation.php

PhastPress, version 1.75. 18 lines.

- Page: https://pluginprobe.com/plugins/phastpress/1.75/code/classes/PhastUserImplementation.php
- Raw: https://pluginprobe.com/plugins/phastpress/1.75/raw/classes/PhastUserImplementation.php
- Modified: 2018-07-04T15:12:14+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/phastpress/1.75/code/classes/PhastUserImplementation.php#L10-L20`.

```php
<?php

namespace Kibo\PhastPlugins\PhastPress;

use Kibo\PhastPlugins\SDK\Security\PhastUser;

class PhastUserImplementation implements PhastUser {

    public function mayModifySettings() {
        return current_user_can('manage_options');
    }

    public function seesPreviewMode() {
        return $this->mayModifySettings();
    }

}

```
