# hostinger/2.0.6/includes/class-hostinger-default-options.php

Hostinger Tools, version 2.0.6. 20 lines.

- Page: https://pluginprobe.com/plugins/hostinger/2.0.6/code/includes/class-hostinger-default-options.php
- Raw: https://pluginprobe.com/plugins/hostinger/2.0.6/raw/includes/class-hostinger-default-options.php
- Modified: 2024-02-12T11:58:46+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/hostinger/2.0.6/code/includes/class-hostinger-default-options.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) || exit;

class Hostinger_Default_Options {
	public function add_options(): void {
		foreach ( $this->options() as $key => $option ) {
			update_option( $key, $option );
		}
	}

	private function options(): array {
		return array(
			'optin_monster_api_activation_redirect_disabled' => 'true',
			'wpforms_activation_redirect' => 'true',
			'aioseo_activation_redirect'  => 'false',
		);
	}
}

```
