Lines Matching refs:line
98 foreach ($lines as $line) {
99 if (!$line['user']) continue;
101 $logType = $this->mainHelper->getLogTypeFromMsg($line['msg']);
107 if ($line['msg'] == 'logged off') {
108 $line['msg'] = $this->getLang('off');
110 } elseif ($line['msg'] == 'logged in permanently') {
111 $line['msg'] = $this->getLang('in');
113 } elseif ($line['msg'] == 'logged in temporarily') {
114 $line['msg'] = $this->getLang('tin');
116 } elseif ($line['msg'] == 'failed login attempt') {
117 $line['msg'] = $this->getLang('fail');
119 } elseif ($line['msg'] == 'has been automatically logged off') {
120 $line['msg'] = $this->getLang('autologoff');
123 $line['msg'] = hsc($line['msg']);
124 if (strpos($line['msg'], 'logged off') !== false) {
126 } elseif (strpos($line['msg'], 'logged in permanently') !== false) {
128 } elseif (strpos($line['msg'], 'logged in') !== false) {
130 } elseif (strpos($line['msg'], 'failed') !== false) {
138 echo '<td>' . strftime($dateFormat, $line['dt']) . '</td>';
139 echo '<td>' . hsc($line['ip']) . '</td>';
140 echo '<td>' . hsc($line['user']) . '</td>';
141 echo '<td><span class="loglog_' . $class . '">' . $line['msg'] . '</span></td>';
143 if ($line['data']) {
145 … echo '<pre>' . json_encode(json_decode($line['data']), JSON_PRETTY_PRINT) . '</pre>';