Lines Matching refs:html
39 echo $this->html();
120 protected function html() function in action_plugin_acknowledge_ajax
162 $html = '<div class="plugin-acknowledge-box ack' . ($ack ? ' done' : '') . '">';
163 $html .= '<div class="ack-icon">';
164 $html .= inlineSVG(__DIR__ . '/../admin.svg');
165 $html .= '</div>';
167 $html .= '<div class="content">';
169 $html .= '<h4>';
170 $html .= $this->getLang('ackOk');
171 $html .= '</h4>';
172 $html .= sprintf($this->getLang('ackGranted'), dformat($ack));
174 $html .= '<h4>' . $this->getLang('ackRequired') . '</h4>';
177 $html .= '<a href="'
191 $html .= $form->toHTML();
193 $html .= '</div>'; // content
194 $html .= '</div>'; // box
196 return $html;
215 $html = '<div class="plugin-acknowledge-box report">';
217 $html .= '<div class="ack-icon">';
218 $html .= inlineSVG(__DIR__ . '/../admin.svg');
219 $html .= '</div>';
221 $html .= '<div class="content">';
222 $html .= '<h3>' . $this->getLang('reportTitle') . '</h3>';
228 $html .= '<p>' . $this->getLang('reportAcknowledgedTitle') . '</p>';
229 $html .= $this->userCountHtml($id, 'current', $counts['current']);
233 $html .= '<p>' . $this->getLang('reportPendingTitle') . '</p>';
234 $html .= $this->userCountHtml($id, 'due', $counts['due']);
237 $html .= '</div>'; // content
238 $html .= '</div>'; // box
240 return $html;
275 $html = '<ul>';
277 $html .= '<li>';
278 $html .= userlink($row['user']);
281 $html .= ' ' . $this->getLang('reportAckedOn') . ' ' . hsc(dformat($row['ack']));
283 $html .= '</li>';
285 $html .= '</ul>';
287 return $html;