123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- namespace OC\Core\Db;
- use OCP\AppFramework\Db\QBMapper;
- use OCP\IDBConnection;
- 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();
- }
- }
|