Modules
Learn how to use modules.
Core modules
A module is a piece of program in a plugin that performs a particular task, or it can function with other modules. The WooCommerce plugin has seven core modules:
LoggermoduleOrderManagementmoduleProductCheckoutmoduleProductMetaFieldsmoduleProductSyncmoduleSettingsmoduleTaxCalculationmodule
A module is a piece of program in a plugin that performs a particular task, or it can function with other modules.
Module interface
The module interface is for any module that needs to be registered with the plugin. Custom modules need to implement this interface for registration.
interface Module {
/**
* Initialization of module.
*
* @return void
*/
public function init(): void;
/**
* Return module name.
*
* @return string
*/
public function name(): string;
}Method description
$module->name(): This method needs to return module name.
The module name can be alphanumeric without spaces. Dashes and underscores are allowed.
$module->init(): Any actual work or initialization activity related to the module should go inside this method.
Example: You can add any hooks or call necessary functions/methods inside
initto run the module.
Register the custom module
To register the custom module:
Create the main module class that either implements the
Moduleinterface or extends theBaseModuleabstract class. Since most of the modules will only be functioning when you enable the Digital River payment gateway, it makes sense to extend theBaseModuleclass.Add the module name by returning the
namemethod to thePlugin::$active_moduleslist.
Last updated