Lines Matching refs:users
25 protected $users = []; variable in helper_plugin_authgooglesheets
56 $users = $this->getUsers();
57 return $users[$user] ?? false;
95 $this->users[$row[$this->columnMap['user']]] = [
104 … $userCache->storeCache(json_encode(['columnMap' => $this->columnMap, 'users' => $this->users]));
106 $this->users = $decoded['users'] ?? null;
110 ksort($this->users);
156 $this->users = $this->getUsers();
169 … 'range' => $rangeStart . $this->alpha[$this->columnMap[$col]] . ($this->users[$user]['row']),
195 * @param array $users
198 public function delete($users) argument
200 if (empty($users)) return false;
203 $this->users = $this->getUsers();
207 $users = array_reverse($users);
208 foreach ($users as $user) {
209 $rowNum = $this->users[$user]['row'];
262 foreach ($this->users as $user => $info) {
364 $this->users = [];