Lines Matching refs:R
48 public function render($mode, Doku_Renderer $R, $data)
52 $R->table_open();
53 $R->tablethead_open();
54 $R->tablerow_open();
55 $R->tableheader_open();
56 $R->cdata($this->getLang('host'));
57 $R->tableheader_close();
58 $R->tableheader_open();
59 $R->cdata($this->getLang('ip'));
60 $R->tableheader_close();
61 $R->tableheader_open();
62 $R->cdata($this->getLang('ns'));
63 $R->tableheader_close();
64 $R->tableheader_open();
65 $R->cdata($this->getLang('ssl'));
66 $R->tableheader_close();
67 $R->tablerow_close();
68 $R->tablethead_close();
70 $R->tabletbody_open();
73 $R->tablerow_open();
74 $this->renderCell($R, [$domain, $comment]);
78 $this->renderCell($R, $dns['ip']);
79 $this->renderCell($R, $dns['ns']);
81 $this->renderCell($R, $e->getMessage(), 2);
88 $R,
98 $this->renderCell($R, $e->getMessage());
101 $R->tablerow_close();
103 $R->tabletbody_close();
105 $R->tabletfoot_open();
106 $R->tablerow_open();
107 $R->tablecell_open(4);
108 $R->cdata($this->getLang('lastupdate') . ' ' . date('Y-m-d H:i:s'));
109 $R->tablecell_close();
110 $R->tablerow_close();
111 $R->tabletfoot_close();
113 $R->table_close();
206 * @param Doku_Renderer $R
210 protected function renderCell($R, $data, $colspan = 1)
212 $R->tablecell_open($colspan);
216 $R->cdata($key . ': ');
218 $R->cdata($item);
219 $R->linebreak();
222 $R->cdata($data);
224 $R->tablecell_close();