HOR-1101: Batch reassignment

.

validacion USR_UID

correccion observacion

soporte multiple plugins
This commit is contained in:
mcuiza
2016-06-15 14:51:44 -04:00
parent 25b77fce04
commit f4be06d7f2
6 changed files with 163 additions and 1 deletions

View File

@@ -432,6 +432,23 @@ class PMPlugin
throw $e;
}
}
/**
* callBack File on reassign
*
* @param string $callBackFile
*
* @return void
*/
public function registerOpenReassignCallback($callBackFile = '')
{
try {
$oPluginRegistry =& PMPluginRegistry::getSingleton();
$oPluginRegistry->registerOpenReassignCallback($callBackFile);
} catch (Exception $e) {
throw $e;
}
}
}
class menuDetail
@@ -788,4 +805,20 @@ class importCallBack
$this->namespace = $namespace;
$this->callBackFile = $callBackFile;
}
}
class OpenReassignCallback
{
public $callBackFile;
/**
* This function is the constructor of the cronFile class
* param string $namespace
* param string $callBackFile
* @return void
*/
public function __construct($callBackFile)
{
$this->callBackFile = $callBackFile;
}
}