# depicter/trunk/app/src/Routing/Conditions/EditorOpen.php

Depicter — Popup &amp; Slider Builder, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Routing/Conditions/EditorOpen.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/app/src/Routing/Conditions/EditorOpen.php
- Modified: 2022-06-01T06:26:20+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/depicter/trunk/code/app/src/Routing/Conditions/EditorOpen.php#L10-L20`.

```php
<?php
namespace Depicter\Routing\Conditions;

use WPEmerge\Requests\RequestInterface;
use WPEmerge\Routing\Conditions\ConditionInterface;

class EditorOpen implements ConditionInterface {
	public function isSatisfied( RequestInterface $request ) {
		return true;
	}

	public function getArguments( RequestInterface $request ) {
         return [];
	}
 }

```
