Lines Matching refs:tmp
76 $tmp = $this->parseClaimedIdentitiesLine($value);
77 if ($tmp !== false) {
78 $data[] = $tmp;
112 $tmp = explode("\t", $line);
113 if ($tmp!==false && count($tmp)>1) {
115 'ident' => $tmp[0], // user identity
116 'user' => $tmp[1]); // local username
137 $tmp = $this->parseUserDataLine($value);
138 if ($tmp !== false) {
139 $data[] = $tmp;
172 $tmp = explode("\t", $line);
173 if ($tmp!==false && count($tmp)>1) {
175 'id' => $tmp[0], // provider id
176 'ident' => $tmp[1], // user identity
177 'last' => (int)$tmp[2]); // last used
260 $tmp = explode("\t", $line);
261 if ($tmp!==false && count($tmp)>1) {
263 'date' => (int)$tmp[0],
264 'ip' => $tmp[1],
265 'type' => $tmp[2],
266 'id' => $tmp[3],
267 'ident' => $tmp[4],
268 'user' => $tmp[5]);