mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
e07a190641
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
35 lines
824 B
PHP
35 lines
824 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Core\Db;
|
|
|
|
use OCP\AppFramework\Db\QBMapper;
|
|
use OCP\IDBConnection;
|
|
|
|
/**
|
|
* @template-extends QBMapper<ProfileConfig>
|
|
*/
|
|
class ProfileConfigMapper extends QBMapper {
|
|
public function __construct(IDBConnection $db) {
|
|
parent::__construct($db, 'profile_config', ProfileConfig::class);
|
|
}
|
|
|
|
public function get(string $userId): ProfileConfig {
|
|
$qb = $this->db->getQueryBuilder();
|
|
$qb->select('*')
|
|
->from($this->getTableName())
|
|
->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId)));
|
|
return $this->findEntity($qb);
|
|
}
|
|
|
|
public function getArray(string $userId): array {
|
|
return $this->get($userId)->getConfigArray();
|
|
}
|
|
}
|