mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
Simplify WizardResult
This commit is contained in:
@@ -81,7 +81,6 @@ class Wizard extends LDAPUtility {
|
||||
\OCP\Util::writeLog('user_ldap', 'Wiz: detected Port '. $p, \OCP\Util::DEBUG);
|
||||
$this->result->addChange('ldap_port', $p);
|
||||
$this->result->addChange('ldap_tls', intval($t));
|
||||
// $this->result->addSpecific('port', $p);
|
||||
return $this->result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,7 +25,6 @@ namespace OCA\user_ldap\lib;
|
||||
|
||||
class WizardResult {
|
||||
protected $changes = array();
|
||||
protected $specifics = array();
|
||||
|
||||
public function addChange($key, $value) {
|
||||
$this->changes[$key] = $value;
|
||||
@@ -35,16 +34,9 @@ class WizardResult {
|
||||
return count($this->changes) > 0;
|
||||
}
|
||||
|
||||
public function addSpecific($key, $value) {
|
||||
$this->specifics[$key] = $value;
|
||||
}
|
||||
|
||||
public function getResultArray() {
|
||||
$result = array();
|
||||
$result['changes'] = $this->changes;
|
||||
foreach($this->specifics as $key => $value) {
|
||||
$result[$key] = $value;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user