Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2026-03-30 07:40:07 +02:00
commit 792d3a6ec6

View File

@ -1901,6 +1901,19 @@ class Settings { /* {{{ */
return true;
} /* }}} */
/**
* Return configuration of extension
*
* @param string $extname name of extension
* @return array|false configuration from $settings->_extensions[name]
*/
public function getExtensionConfiguration($extname) { /* {{{ */
if(array_key_exists($extname, $this->_extensions))
return $this->_extensions[$extname];
return false;
} /* }}} */
/**
* Set extension enabled
*