2013-09-27 20:30:59 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2013-09-27 20:30:59 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-09-27 20:30:59 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-09-27 20:30:59 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-09-27 20:30:59 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-09-27 20:30:59 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-09-27 20:30:59 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 17:08:46 +03:00
|
|
|
namespace OCA\User_LDAP;
|
2013-09-27 20:30:59 +04:00
|
|
|
|
|
|
|
class WizardResult {
|
|
|
|
protected $changes = array();
|
2013-10-04 18:33:37 +04:00
|
|
|
protected $options = array();
|
2013-10-10 03:21:05 +04:00
|
|
|
protected $markedChange = false;
|
2013-09-27 20:30:59 +04:00
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
2014-05-13 15:29:25 +04:00
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
2014-05-11 17:17:27 +04:00
|
|
|
*/
|
2013-09-27 20:30:59 +04:00
|
|
|
public function addChange($key, $value) {
|
|
|
|
$this->changes[$key] = $value;
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2013-10-10 03:21:05 +04:00
|
|
|
public function markChange() {
|
|
|
|
$this->markedChange = true;
|
|
|
|
}
|
|
|
|
|
2014-04-14 19:39:29 +04:00
|
|
|
/**
|
|
|
|
* @param string $key
|
2014-04-16 19:54:10 +04:00
|
|
|
* @param array|string $values
|
2014-04-14 19:39:29 +04:00
|
|
|
*/
|
2013-10-04 18:33:37 +04:00
|
|
|
public function addOptions($key, $values) {
|
|
|
|
if(!is_array($values)) {
|
|
|
|
$values = array($values);
|
|
|
|
}
|
|
|
|
$this->options[$key] = $values;
|
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-09-27 20:30:59 +04:00
|
|
|
public function hasChanges() {
|
2013-10-10 03:21:05 +04:00
|
|
|
return (count($this->changes) > 0 || $this->markedChange);
|
2013-09-27 20:30:59 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 17:17:27 +04:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-09-27 20:30:59 +04:00
|
|
|
public function getResultArray() {
|
|
|
|
$result = array();
|
|
|
|
$result['changes'] = $this->changes;
|
2013-10-04 18:33:37 +04:00
|
|
|
if(count($this->options) > 0) {
|
|
|
|
$result['options'] = $this->options;
|
|
|
|
}
|
2013-09-27 20:30:59 +04:00
|
|
|
return $result;
|
|
|
|
}
|
2014-05-13 15:29:25 +04:00
|
|
|
}
|