summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e488772)
raw | patch | inline | side by side (parent: e488772)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 May 2010 12:17:34 +0000 (12:17 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 May 2010 12:17:34 +0000 (12:17 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18216 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_configRegistry.inc | patch | blob | history |
diff --git a/gosa-core/include/class_configRegistry.inc b/gosa-core/include/class_configRegistry.inc
index e9b5987ab680d3493858ff9400d6d7a51bc529e7..d97aa66ae8aa2676e76ef3fa22ea049444d72760 100644 (file)
// Register Post Events (postmodfiy,postcreate,postremove,checkhook)
if(isset($def['plShortName'])){
$this->classToName[$cname] = $def['plShortName'];
- $data = array('name' => 'postcreate','type' => 'string');
+ $data = array('name' => 'postcreate','type' => 'command');
$this->register($cname, $data);
- $data = array('name' => 'postremove','type' => 'string');
+ $data = array('name' => 'postremove','type' => 'command');
$this->register($cname, $data);
- $data = array('name' => 'postmodify','type' => 'string');
+ $data = array('name' => 'postmodify','type' => 'command');
$this->register($cname, $data);
- $data = array('name' => 'checkhook', 'type' => 'string');
+ $data = array('name' => 'check', 'type' => 'command');
$this->register($cname, $data);
}