Lines Matching refs:R

134     function render($format, Doku_Renderer $R, $data) {  argument
137 $R->meta['plugin_davcal']['table'] = true;
219 $R->table_open();
220 $R->tablethead_open();
221 $R->tableheader_open();
222 $R->doc .= $data['onlystart'] ? hsc($this->getLang('at')) : hsc($this->getLang('from'));
223 $R->tableheader_close();
226 $R->tableheader_open();
227 $R->doc .= hsc($this->getLang('to'));
228 $R->tableheader_close();
230 $R->tableheader_open();
231 $R->doc .= hsc($this->getLang('title'));
232 $R->tableheader_close();
235 $R->tableheader_open();
236 $R->doc .= hsc($this->getLang('location'));
237 $R->tableheader_close();
241 $R->tableheader_open();
242 $R->doc .= hsc($this->getLang('calendar'));
243 $R->tableheader_close();
245 $R->tableheader_open();
246 $R->doc .= hsc($this->getLang('description'));
247 $R->tableheader_close();
248 $R->tablethead_close();
251 $R->tablerow_open();
252 $R->tablecell_open();
260 $R->doc .= $from->format($data['alldayformat']);
262 $R->doc .= $from->format($data['dateformat']);
263 $R->tablecell_close();
272 $R->tablecell_open();
274 $R->doc .= $to->format($data['alldayformat']);
276 $R->doc .= $to->format($data['dateformat']);
277 $R->tablecell_close();
279 $R->tablecell_open();
280 $R->doc .= hsc($event['title']);
281 $R->tablecell_close();
284 $R->tablecell_open();
285 $R->doc .= hsc($event['location']);
286 $R->tablecell_close();
290 $R->tablecell_open();
291 $R->doc .= hsc($event['calendarname']);
292 $R->tablecell_close();
294 $R->tablecell_open();
295 $R->doc .= hsc($event['description']);
296 $R->tablecell_close();
297 $R->tablerow_close();
299 $R->table_close();