Meta Options


This function defines the module meta information that can be display on fraud modules page.

The name of this function must be yourmodulename_MetaData.

Below are examples of the available parameters for MetaData function.
<?php
    function yourmodule_MetaData() {
    	return [
                 "DisplayName" => "Your Module Name",
                 "SupportsRechecks" => true,//true or false
                 "APIVersion" => "Your Module Version",//1.0 as per version number standards
                ];
          }

Click here to read about fraud module Configuration Options