Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 256 → Rev 257

/trunk/includes/classes/OIDplusConfig.class.php
39,31 → 39,18
}
 
public function __construct() {
// TODO: Auslagern in ein Plugin
 
// These are important settings for base functionalities and therefore are not inside plugins
$this->prepareConfigKey('system_title', 'What is the name of your RA?', 'OIDplus 2.0', 0, 1);
$this->prepareConfigKey('admin_email', 'E-Mail address of the system administrator', '', 0, 1);
$this->prepareConfigKey('global_cc', 'Global CC for all outgoing emails?', '', 0, 1);
$this->prepareConfigKey('ra_min_password_length', 'Minimum length for RA passwords', '6', 0, 1);
}
$this->prepareConfigKey('objecttypes_initialized', 'List of object type plugins that were initialized once', '', 1, 1);
$this->prepareConfigKey('objecttypes_enabled', 'Enabled object types and their order, separated with a semicolon (please reload the page so that the change is applied)', '', 0, 1);
$this->prepareConfigKey('oidplus_private_key', 'Private key for this system', '', 1, 0);
$this->prepareConfigKey('oidplus_public_key', 'Public key for this system. If you "clone" your system, you must delete this key (e.g. using phpMyAdmin), so that a new one is created.', '', 1, 1);
 
public function systemTitle() {
return trim($this->getValue('system_title'));
}
 
public function globalCC() {
return trim($this->getValue('global_cc'));
}
 
public function minRaPasswordLength() {
return $this->getValue('ra_min_password_length');
}
 
/* hardcoded in setup/, because during installation, we don't have a settings database
public function minAdminPasswordLength() {
return 10;
}
*/
 
protected function buildConfigArray() {
if ($this->dirty) {
$this->values = array();
98,16 → 85,16
 
}
}
 
if (($name == 'global_cc') || ($name == 'admin_email')) {
if (!empty($value) && !OIDplus::mailUtils()->validMailAddress($value)) {
throw new OIDplusException("This is not a correct email address");
}
}
if ($name == 'ra_min_password_length') {
if (!is_numeric($value) || ($value < 1)) {
throw new OIDplusException("Please enter a valid password length.");
 
if ($name == 'objecttypes_enabled') {
// Nothing here yet
}
}
 
if ($name == 'objecttypes_enabled') {
# TODO: when objecttypes_enabled is changed at the admin control panel, we need to do a reload of the page, so that jsTree will be updated. Is there anything we can do?
139,6 → 126,14
}
}
 
if ($name == 'oidplus_private_key') {
// Nothing here yet
}
 
if ($name == 'oidplus_public_key') {
// Nothing here yet
}
 
// Give plugins the possibility to stop the process (e.g. if the value is invalid)
 
foreach (OIDplus::getPagePlugins('*') as $plugin) {