object module.create(object/array modules)
This method allows to install new frontend modules.
This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.
Module files must be unpacked manually in the correct subdirectories, matching the relative_path
property of the modules.
(object/array)
Modules to create.
The method accepts modules with the standard module properties.
(object)
Returns an object containing the IDs of the installed modules under the moduleids
property. The order of the returned IDs matches the order of the passed modules.
Install a module with the status "Enabled".
{
"jsonrpc": "2.0",
"method": "module.create",
"params": {
"id": "example_module",
"relative_path": "modules/example_module",
"status": 1
},
"id": 1
}
Response:
CModule::create() in ui/include/classes/api/services/CModule.php.