DokuWiki

It's better when it's simple

User Tools

Site Tools


devel:event:rpc_call_add

Table of Contents

RPC_CALL_ADD

Description:
Map custom RPC call to existing one.
DefaultAction:
None
Preventable:
no
Added:
2012-03-23
Removed:
2024-01-12

This event has been removed. If absolutely needed, the same can achieved by overwriting the getMethods() method in a remote plugin to add your own ApiCall.

This event is signalled by getCustomCallPlugins() in inc/remote.php when a remote call cannot be resolved by default naming scheme. Handlers can use it to add a alias for a existing remote method name.

Passed Data

The data passed is an (key-value)array. The key is always the method alias. The value is an array, with plugin name and remote method name.

<?php
array(
  'my.custom.call' => array('myplugin', 'mymethod'),
  'anothercall' => array('myplugin', 'mymethod')
)
do not overwrite the data array. Just add your calls to the array

See also

devel/event/rpc_call_add.txt · Last modified: 2024-02-06 14:09 by andi

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki