summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ce30ca)
raw | patch | inline | side by side (parent: 8ce30ca)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 2 Jun 2010 09:59:56 +0000 (09:59 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 2 Jun 2010 09:59:56 +0000 (09:59 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18832 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 e4703b7d1579a562881ffedc91d46daf7be7ce32..47355e5747c17b980a253698bb6a1e878732ccae 100644 (file)
public $schemaCheckFinished = FALSE;
public $pluginsDeactivated = array();
+ // Name of enabled plugins found in gosa.conf.
+ private $activePlugins = array();
+
/*! \brief Constructs the config registry
* @param config The configuration object
// Collect required schema infos
$this->pluginRequirements = array('ldapSchema' => array());
$this->categoryToClass = array();
+
+ // Walk through plugins with requirements, but only check for active plugins.
foreach($this->classesWithInfo as $cname => $defs){
if(isset($defs['plRequirements'])){
- $this->pluginRequirements[$cname] = $defs['plRequirements'];
+
+ // Only queue checks for active plugins.
+ if(isset($this->activePlugins[strtolower($cname)])){
+ $this->pluginRequirements[$cname] = $defs['plRequirements'];
+ }else{
+ new log("debug","schemaValidation","Skipped schema check for '{$cname}' plugin is inactive!",
+ array(),'');
+ }
}
}
foreach($requirements['ldapSchema'] as $oc => $version){
if(!$this->ocAvailable($oc)){
$this->detectedSchemaIssues['missing'][$oc] = $oc;
+
$this->schemaCheckFailed = TRUE;
$failure = TRUE;
+
+ new log("debug","schemaValidation","LDAP objectClass missing '{$oc}'!",
+ array(),'');
+
}elseif(!empty($version)){
$currentVersion = $this->getObjectClassVersion($oc);
if(!empty($currentVersion) && !$this->ocVersionMatch($version, $currentVersion)){
sprintf(_("%s has version %s but %s is required!"), bold($oc),bold($currentVersion),bold($version));
$this->schemaCheckFailed = TRUE;
$failure = TRUE;
+
+ new log("debug","schemaValidation","LDAP objectClass version mismatch '{$oc}' ".
+ "has '{$currentVersion}' but {$version} required!",
+ array(),'');
}
}
}
$this->fileStoredProperties = array();
$this->properties = array();
$this->mapByName = array();
+ $this->activePlugins = array('core'=>'core');
if(!$this->config) return;
foreach($this->config->data['TABS'] as $tabname => $tabdefs){
foreach($tabdefs as $info){
+ // Put plugin in list of active plugins
+ if(isset($info['CLASS'])){
+ $class = strtolower($info['CLASS']);
+ $this->activePlugins[$class] = $class;
+ }
+
// Check if the info is valid
if(isset($info['NAME']) && isset($info['CLASS'])){
+
// Check if there is nore than just the plugin definition
if(count($info) > 2){
// Search for config flags defined in the config file (MENU section)
foreach($this->config->data['MENU'] as $section => $entries){
foreach($entries as $entry){
- if(count($entry) > 2 && isset($entry['CLASS'])){
- $class = $entry['CLASS'];
- foreach($entry as $name => $value){
- if(!in_array($name, array('CLASS','ACL'))){
- $this->fileStoredProperties[strtolower($class)][strtolower($name)] = $value;
+
+ if(isset($entry['CLASS'])){
+
+ // Put plugin to active plugins list.
+ $class = strtolower($entry['CLASS']);
+ $this->activePlugins[$class] = $class;
+
+ if(count($entry) > 2 ){
+ foreach($entry as $name => $value){
+ if(!in_array($name, array('CLASS','ACL'))){
+ $this->fileStoredProperties[strtolower($class)][strtolower($name)] = $value;
+ }
}
}
}