# sendwp/1.2.9/includes/activation.php

SendWP, version 1.2.9. 11 lines.

- Page: https://pluginprobe.com/plugins/sendwp/1.2.9/code/includes/activation.php
- Raw: https://pluginprobe.com/plugins/sendwp/1.2.9/raw/includes/activation.php
- Modified: 2022-05-30T19:40:54+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/sendwp/1.2.9/code/includes/activation.php#L10-L20`.

```php
<?php

register_activation_hook(
	plugin_dir_path( __DIR__ ) . 'sendwp.php',
	function () {
		if ( ! sendwp_get_client_secret() ) {
			sendwp_set_client_secret( sendwp_generate_secret() );
		}
	}
);

```
