# redirection/5.8.0/modules/nginx.php

Redirection, version 5.8.0. 42 lines.

- Page: https://pluginprobe.com/plugins/redirection/5.8.0/code/modules/nginx.php
- Raw: https://pluginprobe.com/plugins/redirection/5.8.0/raw/modules/nginx.php
- Modified: 2026-01-01T14:34:36+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/5.8.0/code/modules/nginx.php#L10-L20`.

```php
<?php

class Nginx_Module extends Red_Module {
	const MODULE_ID = 3;

	/**
	 * Get module ID
	 *
	 * @return int
	 */
	public function get_id() {
		return self::MODULE_ID;
	}

	/**
	 * Get module name
	 *
	 * @return string
	 */
	public function get_name() {
		return 'Nginx';
	}

	/**
	 * Flush module cache
	 *
	 * @return void
	 */
	protected function flush_module() {
	}

	/**
	 * Update module configuration
	 *
	 * @param array<string, mixed> $data Update data.
	 * @return false
	 */
	public function update( array $data ) {
		return false;
	}
}

```
