You are here

public function EventHandler::removePlugin in Services Client 7.2

Remove existing plugin from configuration. This does is not saved to DB until save() method is called.

Parameters

string $type: Plugin type, i.e. 'mapping', 'condition'.

string $uuid: Plugin identifier.

File

include/event.inc, line 183

Class

EventHandler
Event handler plugin.

Code

public function removePlugin($type, $uuid) {
  unset($this->config[$type][$uuid]);
}