Lines Matching refs:R
106 function render($format, &$R, $data) { argument
115 $R->table_open();
116 $R->tablethead_open();
117 $R->tableheader_open();
118 $R->doc .= $this->getLang('key');
119 $R->tableheader_close();
120 $R->tableheader_open();
121 $R->doc .= $this->getLang('value');
122 $R->tableheader_close();
123 $R->tablethead_close();
126 $R->tablerow_open();
127 $R->tablecell_open();
128 $R->doc .= $key;
129 $R->tablecell_close();
130 $R->tablecell_open();
131 $R->doc .= $val;
132 $R->tablecell_close();
133 $R->tablerow_close();
135 $R->table_close();