# redirection/4.9/actions/nothing.php

Redirection, version 4.9. 12 lines.

- Page: https://pluginprobe.com/plugins/redirection/4.9/code/actions/nothing.php
- Raw: https://pluginprobe.com/plugins/redirection/4.9/raw/actions/nothing.php
- Modified: 2019-03-02T13:08:04+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/redirection/4.9/code/actions/nothing.php#L10-L20`.

```php
<?php

class Nothing_Action extends Red_Action {
	public function process_before( $code, $target ) {
		return apply_filters( 'redirection_do_nothing', false, $target );
	}

	public function needs_target() {
		return false;
	}
}

```
