Lines Matching refs:table

137         $table = '<table class="inline plugin_do">';
138 $table .= ' <tr>';
139 $table .= ' <th>' . $this->getLang('task') . '</th>';
140 $table .= ' <th' . $userstyle . '>' . $this->getLang('user') . '</th>';
141 $table .= ' <th>' . $this->getLang('date') . '</th>';
142 $table .= ' <th>' . $this->getLang('status') . '</th>';
143 $table .= ' <th' . $creatorstyle . '>' . $this->getLang('creator') . '</th>';
144 $table .= ' <th>' . $this->lang['js']['popup_msg'] . '</th>';
145 $table .= ' </tr>';
152 $table .= '<tr>';
153 $table .= '<td class="plugin_do_page">';
154 …$table .= '<a title="' . $row['page'] . '" href="' . wl($row['page']) . '#plgdo__' . $row['md5'] .…
155 $table .= '</td>';
156 $table .= '<td class="plugin_do_assignee"' . $userstyle . '>';
161 $table .= implode(', ', $row['users']);
162 $table .= '</td>';
163 $table .= '<td class="plugin_do_date">' . hsc($row['date']) . '</td>';
164 $table .= '<td class="plugin_do_status" align="center">';
170 …$table .= '<span class="plugin_do_item plugin_do_' . $row['md5'] . ($row['status'] ? ' plugin_do_d…
173 $table .= '<a href="' . wl($ID,
175 $table .= '" class="plugin_do_status">';
177 $table .= '<img src="' . DOKU_BASE . 'lib/plugins/do/pix/' . $image . '" />';
178 $table .= '</a>';
179 $table .= '<span>' . $editor . '</span>';
181 $table .= '</span>'; // outer span end
183 $table .= '</td>';
184 $table .= '<td class="plugin_do_creator"' . $creatorstyle . '>';
185 $table .= $hlp->getPrettyUser($row['creator']);
186 $table .= '</td>';
187 $table .= '<td class="plugin_do_commit">';
188 $table .= hsc($row['msg']);
189 $table .= '</td>';
191 $table .= ' </tr>';
194 $table .= '</table>';
195 return $table;