12345678910111213141516171819202122232425262728293031323334 |
- <?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();
- }
- }
|