mirror of
https://git.code.sf.net/p/seeddms/code
synced 2026-05-08 21:41:23 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
792d3a6ec6
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user