2 namespace wcf\system\option\user\group;
5 * User group option type implementation for integer input fields.
7 * The merge of option values returns -1 if all values are -1 otherwise the lowest
11 * @copyright 2001-2013 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package com.woltlab.wcf
14 * @subpackage system.option.user.group
15 * @category Community Framework
17 class InfiniteInverseIntegerUserGroupOptionType extends InverseIntegerUserGroupOptionType {
19 * @see wcf\system\option\user\group\IUserGroupOptionType::diff()
21 public function diff($defaultValue, $groupValue) {
22 return $this->merge($defaultValue, $groupValue);
26 * @see wcf\system\option\user\group\IUserGroupOptionType::merge()
28 public function merge($defaultValue, $groupValue) {
29 if (($defaultValue == -1 && $groupValue == -1) || ($defaultValue == $groupValue)) {
33 return min($defaultValue, $groupValue);