remove extend in action disable

This commit is contained in:
qronald
2017-02-14 15:49:14 -04:00
parent d8f160cfa0
commit a9a1bd149e
2 changed files with 25 additions and 0 deletions

View File

@@ -360,6 +360,17 @@ class PMPlugin
$oPluginRegistry->registerExtendsRestService($this->sNamespace, $className);
}
/**
* Register a extend rest service and expose it
*
* @param string $className that is name class to extends
*/
function disableExtendsRestService($className)
{
$oPluginRegistry =& PMPluginRegistry::getSingleton();
$oPluginRegistry->disableExtendsRestService($this->sNamespace, $className);
}
/**
* Unregister a rest service
*

View File

@@ -1492,6 +1492,20 @@ class PMPluginRegistry
{
return isset($this->_restExtendServices[$className]) ? $this->_restExtendServices[$className] : array();
}
/**
* Remove a extend rest service class from a plugin to be served by processmaker
*
* @param string $className The service (api) class name
* @return bool
*/
public function disableExtendsRestService($sNamespace, $className)
{
if (isset($this->_restExtendServices[$className])) {
unset($this->_restExtendServices[$className]);
}
}
/**
* Unregister a rest service class of a plugin
*