From 60c9c246b3c1af4bd1ef5ded1298152c8f462fce Mon Sep 17 00:00:00 2001 From: Ere Maijala <ere.maijala@helsinki.fi> Date: Mon, 9 Sep 2019 16:09:21 -0400 Subject: [PATCH] Add convenience method to fetch user by ID. --- module/VuFind/src/VuFind/Db/Table/User.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/module/VuFind/src/VuFind/Db/Table/User.php b/module/VuFind/src/VuFind/Db/Table/User.php index b23ddcef64a..c5dae8da258 100644 --- a/module/VuFind/src/VuFind/Db/Table/User.php +++ b/module/VuFind/src/VuFind/Db/Table/User.php @@ -96,6 +96,18 @@ class User extends Gateway return $row; } + /** + * Retrieve a user object from the database based on ID. + * + * @param string $id ID. + * + * @return UserRow + */ + public function getById($id) + { + return $this->select(['id' => $id])->current(); + } + /** * Retrieve a user object from the database based on catalog ID. * -- GitLab