Skip to content
Code-Schnipsel Gruppen Projekte
Commit ae832806 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

Merge branch 'next' into 'master'

Next

See merge request !93
Übergeordnete 48f45a4d 235921d9
No related branches found
No related tags found
2 Merge Requests!140Update 'next-4.x' with latest changes from 'main',!93Next
Pipeline #7982 bestanden mit Phase
in 45 Sekunden
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
use QUI; use QUI;
use QUI\ExceptionStack; use QUI\ExceptionStack;
use QUI\Users\User;
use function is_array; use function is_array;
use function is_string; use function is_string;
...@@ -222,12 +221,12 @@ public function import(Comments $Comments): void ...@@ -222,12 +221,12 @@ public function import(Comments $Comments): void
/** /**
* Get comments by user * Get comments by user
* *
* @param User $User * @param QUI\Interfaces\Users\User $User
* @return Comments|null * @return Comments|null
* *
* @throws ExceptionStack * @throws ExceptionStack
*/ */
public static function getCommentsByUser(QUI\Users\User $User): ?Comments public static function getCommentsByUser(QUI\Interfaces\Users\User $User): ?Comments
{ {
$Comments = null; $Comments = null;
......
...@@ -11,10 +11,10 @@ ...@@ -11,10 +11,10 @@
use QUI\ERP\Customer\NumberRange as CustomerNumberRange; use QUI\ERP\Customer\NumberRange as CustomerNumberRange;
use QUI\Groups\Group; use QUI\Groups\Group;
use QUI\Interfaces\Users\User as UserInterface; use QUI\Interfaces\Users\User as UserInterface;
use QUI\Users\AuthenticatorInterface;
use function array_filter; use function array_filter;
use function array_flip; use function array_flip;
use function array_walk;
use function explode; use function explode;
use function get_class; use function get_class;
use function is_array; use function is_array;
...@@ -437,7 +437,7 @@ public function getType(): string ...@@ -437,7 +437,7 @@ public function getType(): string
/** /**
* @return mixed * @return mixed
*/ */
public function getStatus(): bool public function getStatus(): int
{ {
return 0; return 0;
} }
...@@ -453,6 +453,12 @@ public function getAddress(int|string $id = 0): QUI\Users\Address ...@@ -453,6 +453,12 @@ public function getAddress(int|string $id = 0): QUI\Users\Address
return new Address($this->address, $this); return new Address($this->address, $this);
} }
public function getAddressList(): array
{
$Address = $this->getAddress();
return [$Address->getUUID() => $Address];
}
/** /**
* @param QUI\Users\Address $Address * @param QUI\Users\Address $Address
*/ */
...@@ -464,7 +470,7 @@ public function setAddress(QUI\Users\Address $Address): void ...@@ -464,7 +470,7 @@ public function setAddress(QUI\Users\Address $Address): void
/** /**
* @return Country|bool * @return Country|bool
*/ */
public function getCountry(): QUI\Countries\Country|bool public function getCountry(): ?QUI\Countries\Country
{ {
if (!empty($this->address) && isset($this->address['country'])) { if (!empty($this->address) && isset($this->address['country'])) {
try { try {
...@@ -558,16 +564,16 @@ public function canUseBackend(): bool ...@@ -558,16 +564,16 @@ public function canUseBackend(): bool
/** /**
* Does nothing * Does nothing
*/ */
public function logout() public function logout(): void
{ {
} }
/** /**
* @param string $code * @param string $code
* @param User|UserInterface|null $PermissionUser * @param UserInterface|null $PermissionUser
* @return bool * @return bool
*/ */
public function activate(string $code, User|UserInterface|null $PermissionUser = null): bool public function activate(string $code = '', ?QUI\Interfaces\Users\User $PermissionUser = null): bool
{ {
return true; return true;
} }
...@@ -594,7 +600,7 @@ public function disable(UserInterface|null $PermissionUser = null): bool ...@@ -594,7 +600,7 @@ public function disable(UserInterface|null $PermissionUser = null): bool
* Does nothing * Does nothing
* @param UserInterface|null $PermissionUser * @param UserInterface|null $PermissionUser
*/ */
public function save(?UserInterface $PermissionUser = null) public function save(?UserInterface $PermissionUser = null): void
{ {
} }
...@@ -627,8 +633,9 @@ public function getStandardAddress(): Address ...@@ -627,8 +633,9 @@ public function getStandardAddress(): Address
return $this->getAddress(); return $this->getAddress();
} }
public function addAddress(): void public function addAddress(array $params = [], QUI\Interfaces\Users\User $ParentUser = null): ?Address
{ {
return null;
} }
/** /**
...@@ -679,11 +686,9 @@ public function getGroups(bool $array = true): array ...@@ -679,11 +686,9 @@ public function getGroups(bool $array = true): array
/** /**
* This user has no avatar, it returned the default placeholder image * This user has no avatar, it returned the default placeholder image
* *
* @return QUI\Projects\Media\Image|false
*
* @throws QUI\Exception * @throws QUI\Exception
*/ */
public function getAvatar(): QUI\Projects\Media\Image|bool public function getAvatar(): ?QUI\Projects\Media\Image
{ {
return QUI::getProjectManager() return QUI::getProjectManager()
->getStandard() ->getStandard()
...@@ -700,6 +705,10 @@ public function setPassword(string $new, ?UserInterface $PermissionUser = null) ...@@ -700,6 +705,10 @@ public function setPassword(string $new, ?UserInterface $PermissionUser = null)
{ {
} }
public function changePassword(string $newPassword, string $oldPassword, UserInterface $ParentUser = null): void
{
}
/** /**
* Does nothing * Does nothing
* @param string $pass * @param string $pass
...@@ -801,4 +810,41 @@ public function getSupplierNo(): string ...@@ -801,4 +810,41 @@ public function getSupplierNo(): string
} }
// endregion // endregion
// region authenticator
public function hasAuthenticator(string $authenticator): bool
{
return false;
}
public function getAuthenticators(): array
{
return [];
}
public function getAuthenticator(string $authenticator): AuthenticatorInterface
{
throw new QUI\Users\Exception(
['quiqqer/core', 'exception.authenticator.not.found'],
404
);
}
public function enableAuthenticator(string $authenticator, UserInterface $ParentUser = null): void
{
throw new QUI\Users\Exception(
['quiqqer/core', 'exception.authenticator.not.found'],
404
);
}
public function disableAuthenticator(string $authenticator, UserInterface $ParentUser = null): void
{
throw new QUI\Users\Exception(
['quiqqer/core', 'exception.authenticator.not.found'],
404
);
}
//endregion
} }
...@@ -274,7 +274,7 @@ public static function getUserArea(UserInterface $User): bool|QUI\ERP\Areas\Area ...@@ -274,7 +274,7 @@ public static function getUserArea(UserInterface $User): bool|QUI\ERP\Areas\Area
* @return false|QUI\Users\Address * @return false|QUI\Users\Address
* @throws QUI\Exception * @throws QUI\Exception
*/ */
public static function getUserERPAddress(UserInterface $User): bool|Address public static function getUserERPAddress(UserInterface $User): null|Address
{ {
if (!QUI::getUsers()->isUser($User)) { if (!QUI::getUsers()->isUser($User)) {
throw new QUI\Exception([ throw new QUI\Exception([
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren