# jetformbuilder/3.6.5.3/modules/verification/events/default-process/executor.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.5.3. 26 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/code/modules/verification/events/default-process/executor.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/raw/modules/verification/events/default-process/executor.php
- Modified: 2023-11-21T13:04:24+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/jetformbuilder/3.6.5.3/code/modules/verification/events/default-process/executor.php#L10-L20`.

```php
<?php


namespace JFB_Modules\Verification\Events\Default_Process;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

use Jet_Form_Builder\Actions\Events\Default_Process\Default_Process_Executor;
use Jet_Form_Builder\Actions\Types\Base;
use JFB_Modules\Verification\Actions\Verification;

class Executor extends Default_Process_Executor {

	protected function is_valid_action( Base $action ): bool {
		return $this->get_event()->is_valid_action( $action );
	}

	public function is_supported(): bool {
		return (bool) jet_fb_action_handler()->get_action( Verification::class );
	}

}

```
